Remove unneeded end tags.
This commit is contained in:
parent
f8e0cc8fe4
commit
19f6eab14e
|
@ -14,7 +14,7 @@
|
||||||
{{ post.date | date_to_string }}
|
{{ post.date | date_to_string }}
|
||||||
</span>
|
</span>
|
||||||
<a href="https://github.com/{{ post.author }}" class="post-author">
|
<a href="https://github.com/{{ post.author }}" class="post-author">
|
||||||
<img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }}"/>
|
<img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }}">
|
||||||
{{ post.author }}
|
{{ post.author }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }}</title>
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="alternate" type="application/rss+xml" title="Jekyll • Simple, blog-aware, static sites - Feed" href="/feed.xml" />
|
<link rel="alternate" type="application/rss+xml" title="Jekyll • Simple, blog-aware, static sites - Feed" href="/feed.xml">
|
||||||
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="{{ site.repository }}/commits/master.atom" />
|
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="{{ site.repository }}/commits/master.atom">
|
||||||
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
|
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
|
||||||
<link href='http://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
|
<link href='http://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
|
||||||
<link rel="stylesheet" href="{{ site.url }}/css/screen.css" />
|
<link rel="stylesheet" href="{{ site.url }}/css/screen.css">
|
||||||
<link rel="icon" type="image/png" href="{{ site.url }}/favicon.png" />
|
<link rel="icon" type="image/png" href="{{ site.url }}/favicon.png">
|
||||||
<script src="{{ site.url }}/js/modernizr-2.7.1.min.js"></script>
|
<script src="{{ site.url }}/js/modernizr-2.7.1.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -17,7 +17,7 @@ layout: news
|
||||||
{{ page.date | date_to_string }}
|
{{ page.date | date_to_string }}
|
||||||
</span>
|
</span>
|
||||||
<a href="https://github.com/{{ page.author }}" class="post-author">
|
<a href="https://github.com/{{ page.author }}" class="post-author">
|
||||||
<img src="https://github.com/{{ page.author }}.png" class="avatar" />
|
<img src="https://github.com/{{ page.author }}.png" class="avatar">
|
||||||
{{ page.author }}
|
{{ page.author }}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue