Markdownify titles and excerpts
This commit is contained in:
parent
ec3eb91fcc
commit
aa8e427570
2 changed files with 6 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
||||||
<article itemscope itemtype="http://schema.org/CreativeWork">
|
<article itemscope itemtype="http://schema.org/CreativeWork">
|
||||||
{% if post.link %}
|
{% if post.link %}
|
||||||
<h2 class="link-post" itemprop="headline"><a href="{{ absurl }}{{ post.url }}">{{ post.title | markdownify | remove: "<p>" | remove: "</p>" }}</a> <a href="{{ post.link }}" target="_blank"><i class="fa fa-link"></i></a></h2>
|
<h2 class="link-post" itemprop="headline"><a href="{{ absurl }}{{ post.url }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank"><i class="fa fa-link"></i></a></h2>
|
||||||
{% else %}
|
{% else %}
|
||||||
<h2 itemprop="headline"><a href="{{ absurl }}{{ post.url }}">{{ post.title | markdownify | remove: "<p>" | remove: "</p>" }}</a></h2>
|
<h2 itemprop="headline"><a href="{{ absurl }}{{ post.url }}">{{ post.title }}</a></h2>
|
||||||
{% if post.excerpt %}<p itemprop="description">{{ post.excerpt | strip_html | truncate: 160 }}</p>{% endif %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if post.excerpt %}<p itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
||||||
</article>
|
</article>
|
|
@ -12,14 +12,14 @@ layout: default
|
||||||
<div class="article-wrap">
|
<div class="article-wrap">
|
||||||
<header>
|
<header>
|
||||||
{% if page.link %}
|
{% if page.link %}
|
||||||
<h1 itemprop="headline"><a href="{{ page.link }}">{{ page.title }}</a></h1>
|
<h1 itemprop="headline"><a href="{{ page.link }}">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</a></h1>
|
||||||
{% else %}
|
{% else %}
|
||||||
<h1 itemprop="headline"><a href="{{ absurl }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1>
|
<h1 itemprop="headline"><a href="{{ absurl }}{{ page.url }}" rel="bookmark">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</a></h1>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<section itemprop="text">
|
<section itemprop="text">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
Loading…
Add table
Reference in a new issue