fix(header): two-row column

This commit is contained in:
Mahdi Dibaiee
2019-03-24 08:24:31 +04:30
parent c2e4eeb8ec
commit bef80a3a0f
2 changed files with 15 additions and 10 deletions

View File

@ -7,13 +7,19 @@
</h1>
<nav>
{% for collection in site.collections %}
{% if collection.title %}
<a href="{{ collection.path | prepend: site.baseurl }}">{{ collection.title }}</a>
{% endif %}
{% endfor %}
<a href='mailto:{{ site.email }}'>email</a>
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">feed</a>
<p class='categories'>
{% for collection in site.collections %}
{% if collection.title %}
<a href="{{ collection.path | prepend: site.baseurl }}">{{ collection.title }}</a>
{% endif %}
{% endfor %}
</p>
<p>
<a href='mailto:{{ site.email }}'>email</a>
<a href='https://github.com/mdibaiee'>github</a>
<a href='https://www.linkedin.com/in/mdibaiee/'>linkedin</a>
<a href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}">feed</a>
</p>
</nav>
</header>