diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-08-12 21:06:13 -0700 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-08-12 21:16:35 -0700 |
commit | 59447261a889b1b65f32e325894ef6fc2b9288c6 (patch) | |
tree | 548614e0ee9cdd7000562f87a4be0c46d6a78e60 /src | |
parent | d24ac544f910da9d4d4f9dd7db0e24248257f9a7 (diff) |
Change post ids in pather
Diffstat (limited to 'src')
-rw-r--r-- | src/blog.html.erb | 2 | ||||
-rw-r--r-- | src/index.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/blog.html.erb b/src/blog.html.erb index bd7b8aa..3709ca9 100644 --- a/src/blog.html.erb +++ b/src/blog.html.erb @@ -1,7 +1,7 @@ <ul> <% posts.each do |post| %> <li> - <a href=<%= path_to post['title'] %>><%= post['title'] %></a> <%= format_date post['date'] %> + <a href=<%= path_to post['id'] %>><%= post['title'] %></a> <%= format_date post['date'] %> </li> <% end %> </ul> diff --git a/src/index.html.erb b/src/index.html.erb index eb9728f..7d4f7d0 100644 --- a/src/index.html.erb +++ b/src/index.html.erb @@ -9,7 +9,7 @@ <ul> <% posts.take(5).each do |post| %> <li> - <a href='<%= path_to post['title'] %>'><%= post['title'] %></a> <%= format_date post['date'] %> + <a href='<%= path_to post['id'] %>'><%= post['title'] %></a> <%= format_date post['date'] %> </li> <% end %> </ul> |