feat: Allow empty titles in posts
This commit is contained in:
parent
0a2c28d420
commit
2be76aa5fe
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
<title>{% if page.title and page.title != "" %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>
|
||||||
{% seo %}
|
{% seo %}
|
||||||
{% include meta.html %}
|
{% include meta.html %}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ title: Categories
|
||||||
<a name="{{ category_name | slugize }}"></a>
|
<a name="{{ category_name | slugize }}"></a>
|
||||||
{% for post in site.categories[category_name] %}
|
{% for post in site.categories[category_name] %}
|
||||||
<article class="archive-item">
|
<article class="archive-item">
|
||||||
<h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
|
<h4><a href="{{ site.baseurl }}{{ post.url }}">{% if post.title and post.title != "" %}{{post.title}}{% else %}{{post.excerpt |strip_html}}{%endif%}</a></h4>
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: ""
|
||||||
|
categories: Miscellaneous
|
||||||
|
---
|
||||||
|
Sometimes, your post just stands for itself and doesn't need a title. And that's fine, too!
|
|
@ -5,13 +5,13 @@ layout: default
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
<article class="post">
|
<article class="post">
|
||||||
|
<a href="{{ site.baseurl }}{{ post.url }}">
|
||||||
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
<h1>{{ post.title }}</h1>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
|
<p class="post_date">{{ post.date | date: "%B %e, %Y" }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
</a>
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
{{ post.excerpt }}
|
{{ post.excerpt }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
{
|
{
|
||||||
|
|
||||||
"title" : "{{ post.title | escape }}",
|
"title" : "{% if post.title != "" %}{{ post.title | escape }}{% else %}{{ post.excerpt | strip_html | escape | strip }}{%endif%}",
|
||||||
"url" : "{{ site.baseurl }}{{ post.url }}",
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
||||||
"category" : "{{ post.categories | join: ', '}}",
|
"category" : "{{ post.categories | join: ', '}}",
|
||||||
"date" : "{{ post.date | date: "%B %e, %Y" }}"
|
"date" : "{{ post.date | date: "%B %e, %Y" }}"
|
||||||
|
|
Loading…
Reference in New Issue