Skip to content

Commit 47d1ed9

Browse files
committed
Add favicon
1 parent 8fcd570 commit 47d1ed9

File tree

3 files changed

+2
-30
lines changed

3 files changed

+2
-30
lines changed

_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta name="viewport" content="width=device-width, initial-scale=1">
55
{%- seo -%}
66
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
7+
<link rel="icon" type="image/png" href="{{ "/assets/favicon.png" | relative_url }}" />
78
{%- feed_meta -%}
89
{%- if jekyll.environment == 'production' and site.google_analytics -%}
910
{%- include google-analytics.html -%}

assets/favicon.png

799 Bytes
Loading

index.html

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,3 @@
11
---
2-
layout: default
2+
layout: home
33
---
4-
{% include author.html %}
5-
{% assign posts_count = paginator.posts | size %}
6-
{% if posts_count > 0 %}
7-
<h1>Recent blog articles</h1>
8-
<div class="post-links">
9-
{% for post in paginator.posts %}
10-
<div class="post-link-wrapper">
11-
<a href="{{ post.url | relative_url }}" class="post-link">{{ post.title }}</a>
12-
<div class="post-meta">
13-
14-
<div class="post-tags">
15-
{% for tag in post.tags %}
16-
<a class="tag" href="/tag/{{ tag }}/">{{ tag }}</a>
17-
{% endfor %}
18-
</div>
19-
{% if site.date_format %}
20-
{{ post.date | date: site.date_format }}
21-
{% else %}
22-
{{ post.date | date: "%b %-d, %Y" }}
23-
{% endif %}
24-
</div>
25-
</div>
26-
{% endfor %}
27-
</div>
28-
29-
{% include pagination.html %}
30-
{% else %}
31-
<div>No posts yet.</div>
32-
{% endif %}

0 commit comments

Comments
 (0)