Jekyll
How to write a Jekyll post.
- Blogging is baked into Jekyll. You write blog posts as text files and Jekyll provides everything you need to turn it into a blog.
Page Creation
How to embed Jekyll Tags in a page
{% for tag in site.tags %}
<h3>{{ tag[0] }}</h3>
<ul>
{% for post in tag[1] %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
Using Anchor Tags
[Go to Section 1](#section1)
## <a id="section1"></a>Section 1