Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 3d286fa

Browse files
committed
Simplify markup
1 parent 3d788ec commit 3d286fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_includes/author.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{%- endif -%}
1010
<img src="{{ author_image }}" class="bio-photo" alt="">
1111
{%- endif -%}
12-
<span class="author vcard"><span class="fn">{{ author.name }}</span></span>
12+
<span>{{ author.name }}</span>
1313
{%- if author.links -%}
1414
{%- for link in author.links -%}
1515
{%- if link.url contains "://" -%}

_layouts/post.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
---
44

55
<div id="main" role="main">
6-
<article class="hentry">
6+
<article>
77
{% include page-image.html %}
88
<div class="entry-wrapper">
99
<header class="entry-header">
1010
{% if page.link %}
11-
<h1 class="entry-title"><a href="{{ page.link }}">{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %} <span class="link-arrow">&rarr;</span></a></h1>
11+
<h1 class="entry-title"><a href="{{ page.link }}">{{ page.title }} <span class="link-arrow">&rarr;</span></a></h1>
1212
{% else %}
13-
<h1 class="entry-title">{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}{% endif %}</h1>
13+
<h1 class="entry-title">{{ page.title }}</h1>
1414
{% endif %}
1515
</header>
1616
<aside class="entry-meta">

0 commit comments

Comments
 (0)