mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 09:19:00 +00:00
Test the pagination
This commit is contained in:
parent
0e02114055
commit
26462f6a75
@ -19,9 +19,8 @@ description: >- # this means to ignore newlines until "baseurl:"
|
|||||||
A blog that serves as a documentation of my progress
|
A blog that serves as a documentation of my progress
|
||||||
learning anything tech-related, mostly programming and
|
learning anything tech-related, mostly programming and
|
||||||
engineering. Yes, one of those blogs...
|
engineering. Yes, one of those blogs...
|
||||||
baseurl: "/blog" # the subpath of your site, e.g. /blog
|
baseurl: "/blog/" # the subpath of your site, e.g. /blog
|
||||||
url: "https://foo-dogsquared.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "https://foo-dogsquared.github.io" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
encoding: UTF-8
|
|
||||||
|
|
||||||
codepen_username: foo-dogsquared
|
codepen_username: foo-dogsquared
|
||||||
devto_username: foodogsquared
|
devto_username: foodogsquared
|
||||||
@ -30,7 +29,7 @@ gitlab_username: foo-dogsquared
|
|||||||
linkedin_username: gabriel-arazas
|
linkedin_username: gabriel-arazas
|
||||||
twitter_username: foo_dogsquared
|
twitter_username: foo_dogsquared
|
||||||
paginate: 10
|
paginate: 10
|
||||||
paginate_path: "/page:num/"
|
paginate_path: '/blog/page:num/'
|
||||||
|
|
||||||
# Enabling Disqus
|
# Enabling Disqus
|
||||||
disqus:
|
disqus:
|
||||||
|
7
notes.md
7
notes.md
@ -7,7 +7,12 @@ permalink: /notes/
|
|||||||
<ul id="entry-list" style="list-style: none; margin: 0; padding: 0">
|
<ul id="entry-list" style="list-style: none; margin: 0; padding: 0">
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<li class="entry-list-item">
|
<li class="entry-list-item">
|
||||||
<a href="{{post.url | relative_url}}">{{post.title}}</a>
|
<div style="display: flex; flex-flow: column wrap;">
|
||||||
|
<a href="{{post.url | relative_url}}">{{post.title}}</a>
|
||||||
|
{% if post.alt_title %}
|
||||||
|
<a href="{{post.url | relative_url}}" style="font-size: 0.9em">{{post.alt_title}}</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
<span class="post-list-date">{{post.date | date_to_long_string}}</span>
|
<span class="post-list-date">{{post.date | date_to_long_string}}</span>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user