summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_layouts/master.html1
-rw-r--r--_layouts/post.html4
-rw-r--r--assets/less/style.less3
-rw-r--r--index.html4
-rw-r--r--projects/index.html4
-rw-r--r--writing/index.html4
6 files changed, 10 insertions, 10 deletions
diff --git a/_layouts/master.html b/_layouts/master.html
index 8c4923b..fda1576 100644
--- a/_layouts/master.html
+++ b/_layouts/master.html
@@ -93,7 +93,6 @@
</div>
</header>
<main class="grid_12">
-
{{ content }}
</main>
<footer class="grid_12">
diff --git a/_layouts/post.html b/_layouts/post.html
index adb4760..7d6cd7c 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,7 +2,7 @@
layout: master
---
-<div class="doc_detail">
+<section class="article">
<h1>{{ page.title }}</h1>
@@ -12,4 +12,4 @@ layout: master
{{ content }}
-</div>
+</section>
diff --git a/assets/less/style.less b/assets/less/style.less
index 08ee4d5..c653887 100644
--- a/assets/less/style.less
+++ b/assets/less/style.less
@@ -113,7 +113,7 @@ pre {
}
}
-.doc_detail {
+.article {
.date {
margin-bottom: 1em;
@@ -158,5 +158,6 @@ pre {
header, footer {
display: none;
+ visibility: hidden;
}
}
diff --git a/index.html b/index.html
index d1d966f..6b99927 100644
--- a/index.html
+++ b/index.html
@@ -3,8 +3,8 @@ layout: master
title: Ben Burwell
---
-<div class="about grid_10 push_1">
+<section class="about grid_10 push_1">
<p class="portrait"></p>
<h1>Ben Burwell</h1>
<p>Passionate about kerning &amp; coffee. I’m available for <a href="/assets/pdf/Ben_Burwell_Resume.pdf">freelance work</a> on a limited basis; if you’re interested in hiring me for your project, please <a href="mailto:hi@benburwell.com">get in touch</a>.</p>
-</div>
+</section>
diff --git a/projects/index.html b/projects/index.html
index 9ba9f64..29e65ae 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -5,8 +5,8 @@ description: Projects I’ve done.
---
{% for post in site.categories.projects %}
- <div class="project">
+ <section class="project">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>{{ post.description }}</p>
- </div>
+ </section>
{% endfor %}
diff --git a/writing/index.html b/writing/index.html
index b7ad2a5..3a34229 100644
--- a/writing/index.html
+++ b/writing/index.html
@@ -5,8 +5,8 @@ description: A small collection of writing I’ve done on various topics over th
---
{% for post in site.categories.writing %}
- <div class="writing">
+ <section class="writing">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p>{{ post.description }}</p>
- </div>
+ </section>
{% endfor %}