summaryrefslogtreecommitdiff
path: root/bin/page
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-04 17:13:22 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-04 17:13:22 -0500
commit90e593e800e62b1605a8052a54e0ab3371dd3dde (patch)
tree35290948b249e6e756a3fdf6724fc8aa2bb4c6af /bin/page
parent5e257d407b4abf2be61c656dfb1d383396df35b1 (diff)
implement sections
Diffstat (limited to 'bin/page')
-rwxr-xr-xbin/page2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/page b/bin/page
index 1b631cf..ee62a95 100755
--- a/bin/page
+++ b/bin/page
@@ -5,7 +5,7 @@ require 'uri'
template = "bin/page.#{ARGV[0]}.erb"
@page = Page.new(ARGV[1])
-@url = URI::parse('https://www.andrewdm.me') + @page.absoutpath
+@url = URI::parse('https://www.andrewdm.me/') + @page.absoutpath
erb = ERB.new(File.read(template));
erb.filename = template