Tags to menu, p styling, search
This commit is contained in:
@ -9,6 +9,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="{{site.baseurl}}/about">About</a></li>
|
<li><a href="{{site.baseurl}}/about">About</a></li>
|
||||||
<li><a href="{{site.baseurl}}/collections">Collections</a></li>
|
<li><a href="{{site.baseurl}}/collections">Collections</a></li>
|
||||||
|
<li><a href="{{site.baseurl}}/tags">Tags</a></li>
|
||||||
<li><a href="javascript:invert()">Invert colors</a></li>
|
<li><a href="javascript:invert()">Invert colors</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|||||||
@ -39,7 +39,7 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
text-indent: 2em;
|
text-indent: 2em;
|
||||||
}
|
}
|
||||||
p:first-of-type, hr + p {
|
p:first-of-type, hr + p, blockquote + p {
|
||||||
text-indent: 0em;
|
text-indent: 0em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
11
search.json
11
search.json
@ -4,11 +4,12 @@ layout: null
|
|||||||
[
|
[
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
{
|
{
|
||||||
"title" : "{{ post.title | escape }}",
|
"title" : "{{ post.title | escape }}",
|
||||||
"category" : "{{ post.category }}",
|
"description": "{{ post.description | escape }}",
|
||||||
"tags" : "{{ post.tags | join: ', ' }}",
|
"category" : "{{ post.category }}",
|
||||||
"url" : "{{ site.baseurl }}{{ post.url }}",
|
"tags" : "{{ post.tags | join: ', ' }}",
|
||||||
"date" : "{{ post.date }}"
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
||||||
|
"date" : "{{ post.date }}"
|
||||||
} {% unless forloop.last %},{% endunless %}
|
} {% unless forloop.last %},{% endunless %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user