Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dplesca/purehugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDragos Plesca <dragos.plesca@gmail.com>2015-06-14 16:49:52 +0300
committerDragos Plesca <dragos.plesca@gmail.com>2015-06-14 16:49:52 +0300
commitb995baa371e5289bc1ad756a3756fa415fae85bf (patch)
tree759c1159ca51d36e5b165dfc2e75ea082df66237
parenta159f5779f1754a86a0a7a736d21a7549c2f4598 (diff)
rss link and icon
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/partials/sidebar.html3
2 files changed, 5 insertions, 0 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 962e0d5..4ca7e6d 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -28,5 +28,7 @@
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/all.min.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
+
+ <link rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" href="{{ .Site.BaseURL }}/index.xml" />
</head>
<body>
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index ce7cb8b..ce2776c 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -17,6 +17,9 @@
<a class="pure-button" href="https://github.com/{{ . }} "><i class="fa fa-github-alt"></i> github</a>
</li>
{{ end }}
+ <li class="nav-item">
+ <a class="pure-button" href="{{ .Site.BaseURL }}/index.xml"><i class="fa fa-rss"></i> rss</a>
+ </li>
</ul>
</nav>
</div>