Skip to content

Commit 74688ce

Browse files
committed
2 parents 1f9d49d + 514be83 commit 74688ce

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Sharewave Blog
2+
description: ""
23
markdown: redcarpet
34
pygments: true
45

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h5>Follow </h5>
2222
<a href="https://twitter.com/sharewaveteam" target="_blank"><span data-icon="&#xe035;" aria-hidden="true"></span></a>
2323
</li>
2424
<li>
25-
<a href="http://feeds.feedburner.com/Sharewave" target="_blank"><span data-icon="&#xe606;" aria-hidden="true"></span></a>
25+
<a href="http://feeds.feedburner.com/SharewaveDevBlog" target="_blank"><span data-icon="&#xe606;" aria-hidden="true"></span></a>
2626
</li>
2727
</ul>
2828
</div>

_layouts/default.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
66
<meta name="viewport" content="width=device-width">
7+
<title>{{page.title}}</title>
8+
<link rel="icon" type="image/ico" href="{{ site.url }}/favicon.ico"/>
79

810
<!-- Font CSS -->
911
<link rel="stylesheet" href="//f.fontdeck.com/s/css/Oj+Nln32FcMtkXgEzqsJznLXgf0/localhost/35219.css" type="text/css"/>

feed.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: none
3+
---
4+
<?xml version="1.0" encoding="UTF-8"?>
5+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
6+
<channel>
7+
<title>{{ site.name | xml_escape }}</title>
8+
<description>{{ site.description | xml_escape }}</description>
9+
<link>{{ site.url }}</link>
10+
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
11+
{% for post in site.posts limit:10 %}
12+
<item>
13+
<title>{{ post.title | xml_escape }}</title>
14+
<description>{{ post.content | xml_escape }}</description>
15+
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
16+
<link>{{ site.url }}/{{ post.url }}</link>
17+
<guid isPermaLink="true">{{ site.url }}/{{ post.url }}</guid>
18+
</item>
19+
{% endfor %}
20+
</channel>
21+
</rss>

0 commit comments

Comments
 (0)