File tree Expand file tree Collapse file tree 3 files changed +34
-2
lines changed Expand file tree Collapse file tree 3 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 22.sass-cache
33.jekyll-metadata
44Gemfile.lock
5-
5+ * .gem
Original file line number Diff line number Diff line change 1+ ---
2+ layout: default
3+ ---
4+ {% include author.html %}
5+ {% assign posts_count = paginator.posts | size %}
6+ {% if posts_count > 0 %}
7+ < h1 > Recent blog articles</ h1 >
8+ < div class ="post-links ">
9+ {% for post in paginator.posts %}
10+ < div class ="post-link-wrapper ">
11+ < a href ="{{ post.url | relative_url }} " class ="post-link "> {{ post.title }}</ a >
12+ < div class ="post-meta ">
13+
14+ < div class ="post-tags ">
15+ {% for tag in post.tags %}
16+ < a class ="tag " href ="/tag/{{ tag }}/ "> {{ tag }}</ a >
17+ {% endfor %}
18+ </ div >
19+ {% if site.date_format %}
20+ {{ post.date | date: site.date_format }}
21+ {% else %}
22+ {{ post.date | date: "%b %-d, %Y" }}
23+ {% endif %}
24+ </ div >
25+ </ div >
26+ {% endfor %}
27+ </ div >
28+
29+ {% include pagination.html %}
30+ {% else %}
31+ < div > No posts yet.</ div >
32+ {% endif %}
Original file line number Diff line number Diff line change 22
33Gem ::Specification . new do |spec |
44 spec . name = "jekyll-dash"
5- spec . version = "1.0.0 "
5+ spec . version = "1.0.2 "
66 spec . authors = [ "Miguel Gonzalez Sanchez" ]
77 spec . email = [ "[email protected] " ] 88
You can’t perform that action at this time.
0 commit comments