summaryrefslogtreecommitdiff
path: root/file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'file.rb')
-rwxr-xr-xfile.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.rb b/file.rb
index d9bfe78..06c53f9 100755
--- a/file.rb
+++ b/file.rb
@@ -5,8 +5,8 @@ path = ARGV[0]
basename = File.basename(path, File.extname(path))
html = File.read(File.join(SNIPPETS, 'head.html'))
html += nav basename
-html += "<div class='post'>"
+html += '<section>'
html += File.read(path)
-html += '</div>'
+html += '</section>'
html += File.read(File.join(SNIPPETS, 'tail.html'))
print_html basename, html