diff options
author | HombreLaser <sebastian-440@live.com> | 2023-08-27 02:40:08 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-08-27 02:40:08 -0600 |
commit | ac6772f292a83217e10e38ba853c76b5666133e0 (patch) | |
tree | d0d4eb27d9482dc275d75f48a2ca029d825e52a6 /index.html |
Commit inicial
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..75fb080 --- /dev/null +++ b/index.html @@ -0,0 +1,35 @@ +--- +layout: default +--- + +{% for post in paginator.posts %} +<div class="article"> + <div class="well"> + <h1><a href="{{ site.baseurl}}{{ post.url }}">{{ post.date | date: "%b %-d, %Y" }} - {{ post.title }}</a></h1> + {% if site.comments and post.comments %} + {% if site.disqus != '' %} + <p class="author"><a href="{{ site.baseurl }}{{ post.url }}/#disqus_thread" data-disqus-identifier="{{ post.url | slugify }}">Comments</a></p> + {% elsif site.isso != '' %} + <p class="author"><a href="{{ site.baseurl }}{{ post.url }}{{ site.isso_suffix }}#isso-thread">Comments</a></p> + {% endif %} + {% endif %} + <div class="content"> + {{ post.content }} + </div> + </div> +</div> +{% endfor %} + +<div class="pagination"> + {% if paginator.previous_page %} + {% if paginator.previous_page == 1 %} + <a class="btn btn-default" href="{{ site.baseurl}}/index.html" class="previous">Newer</a> + {% else %} + <a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.previous_page }}" class="previous">Newer</a> + {% endif %} + {% endif %} + <span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span> + {% if paginator.next_page %} + <a class="btn btn-default" href="{{ site.baseurl}}/page{{ paginator.next_page }}" class="next">Older</a> + {% endif %} +</div> |