diff options
author | HombreLaser <sebastian-440@live.com> | 2023-08-27 16:39:44 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-08-27 16:39:44 -0600 |
commit | 42706e303bf3536b56c066f26dfe39501ebfadeb (patch) | |
tree | 2123e30a8e6f03ce5e809b7c66af94924631570f /_layouts | |
parent | a2a0a2d0e08cee9fb73ee506d9a55ee8ed4625f8 (diff) |
Finishing touches
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/post.html | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 7b6f8a7..941cb77 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,39 +9,20 @@ <div class="article"> <div class="well"> <h1><a href="{{ site.baseurl}}{{ page.url }}">{{ page.date | date: "%b %-d, %Y" }} - {{ page.title }}</a></h1> - {% if site.comments and page.comments %} - {% if site.disqus != '' %} - <p class="author"><a href="#disqus_thread" data-disqus-identifier="{{ page.url | slugify }}">Comments</a></p> - {% elsif site.isso != '' %} - <p class="author"><a href="{{ site.baseurl }}{{ page.url }}{{ site.isso_suffix }}#isso-thread">Comments</a></p> - {% endif %} - {% endif %} <div class="post-content"> - {{ content }} - </div> - {% if page.comments %} - {% if site.disqus != '' %} - <div id="disqus_thread"> - <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> - <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> - </div> - {% elsif site.isso != '' %} - <section id="isso-thread"></section> - {% endif %} - {% endif %} - </div> + {{ content }} + </div> </div> <div class="pagination"> {% if page.next %} - <a class="btn btn-default" href="{{ site.baseurl}}{{ page.next.url }}" class="next">Newer Post</a> + <a class="btn btn-default" href="{{ site.baseurl}}{{ page.next.url }}" class="next">Posts nuevos</a> {% endif %} {% if page.previous %} - <a class="btn btn-default" href="{{ site.baseurl}}{{ page.previous.url }}" class="previous">Older Post</a> + <a class="btn btn-default" href="{{ site.baseurl}}{{ page.previous.url }}" class="previous">Posts antiguos</a> {% endif %} </div> </div> </div> </div> -{% include disqus-comments.html %} {% include footer.html %} |