Created
July 18, 2017 18:15
-
-
Save manbearwolf/202c7847c6f5a2f6c0abcdb80f9bdcba to your computer and use it in GitHub Desktop.
Lines Used From JekyllWriter (index.html) https://github.com/JekyllWriter/blog/blob/gh-pages/index.html (Between Lines 9-17) (Used in _layouts/home.html Minima Theme)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <span class="post-meta">{% if post.author %}{{ post.author }}{% else %}{{ site.author }}{% endif %} | {{ post.date | date: "%b %-d, %Y" }}</span> | |
| <div class="post-excerpt">{{ post.excerpt }}</div> | |
| <div class="post-meta">{% if post.categories %}Filed under: <a href="{{ "/categories/" | prepend: site.baseurl }}#category-{{ post.categories.first | replace: ' ', '_' }}">{{ post.categories.first }}</a>{% for category in post.categories offset:1 %}, <a href="{{ "/categories/" | prepend: site.baseurl }}#category-{{ category | replace: ' ', '_' }}">{{ category }}</a>{% endfor %}{% endif %}{% if post.tags %}{% if post.categories %} | {% endif %}Tags: <a href="{{ "/tags/" | prepend: site.baseurl }}#tag-{{ post.tags.first | replace: ' ', '_' }}">{{ post.tags.first }}</a>{% for tag in post.tags offset:1 %}, <a href="{{ "/tags/" | prepend: site.baseurl }}#tag-{{ tag | replace: ' ', '_' }}">{{ tag }}</a>{% endfor %}{% endif %}</div> | |
| <div class="read-more"><a href="{{ post.url | prepend: site.baseurl }}">Read more »</a></div> |
Author
Author
or at Jekyll. Use a more <--more--> tag in setup and post.
In Config.yml
excerpt_separator: <!--more-->
Next in post (I think). Instead of space.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just Meta-data (Goes around outside post on home page Works) & Post Excerpt ( Most Important!!!)..
Lines Run... is what's important... (Lines can be picky).
Without
<divclass="post-excerpt">{{ post.excerpt}}</div>Line.
The blog on Minima won't show pictures or written lines in it. Uses /n/n spacing...
Which is
a spaced line in html
a paragraph
a spaced line in html
Right on markdown blog post file at the top (or wherever you leave a spaced line in it past the top, (you can leave a line at the top, after front matter or not).