diff --git a/_includes/header.html b/_includes/header.html index fc18ee4..6334194 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -9,6 +9,7 @@
diff --git a/assets/css/sass/parts/post-page.scss b/assets/css/sass/parts/post-page.scss index 56b07c3..9606783 100644 --- a/assets/css/sass/parts/post-page.scss +++ b/assets/css/sass/parts/post-page.scss @@ -39,7 +39,7 @@ margin: 0; text-indent: 2em; } - p:first-of-type, hr + p { + p:first-of-type, hr + p, blockquote + p { text-indent: 0em; } } diff --git a/search.json b/search.json index 3abfb1b..ad65446 100644 --- a/search.json +++ b/search.json @@ -4,11 +4,12 @@ layout: null [ {% for post in site.posts %} { - "title" : "{{ post.title | escape }}", - "category" : "{{ post.category }}", - "tags" : "{{ post.tags | join: ', ' }}", - "url" : "{{ site.baseurl }}{{ post.url }}", - "date" : "{{ post.date }}" + "title" : "{{ post.title | escape }}", + "description": "{{ post.description | escape }}", + "category" : "{{ post.category }}", + "tags" : "{{ post.tags | join: ', ' }}", + "url" : "{{ site.baseurl }}{{ post.url }}", + "date" : "{{ post.date }}" } {% unless forloop.last %},{% endunless %} {% endfor %} ]