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

github.com/schollz/onetwothree.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZack Scholl <zack.scholl@gmail.com>2018-03-24 13:39:34 +0300
committerZack Scholl <zack.scholl@gmail.com>2018-03-24 13:39:34 +0300
commit00122e95ce57e91dc1e53d48291b3ebc8de4cae0 (patch)
treed1ba8b8a44c2d2bb12cd449210803a519effb20c
parentf50f72c6d9fc34d2fad063b120b47ce4518d18e0 (diff)
Move hr to footer, add rss
-rwxr-xr-xlayouts/_default/single.html3
-rwxr-xr-xlayouts/partials/footer.html7
-rw-r--r--layouts/partials/middle.html1
-rw-r--r--layouts/partials/sidebar.html4
4 files changed, 9 insertions, 6 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index a1b9bfa..5bc2db2 100755
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -206,8 +206,9 @@ window.onload = ready;
</table>
</div>
{{ partial "sidebar.html" . }}
+
</div>
</div>
-<hr>
+
{{ partial "footer.html" . }} \ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 04e7d1c..56624f0 100755
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,7 @@
<footer>
- <p>"On the Internet, nobody knows you're a dog." - <em>Peter Steiner</em></p>
- <p>This site was made with <a href="https://github.com/gohugoio/hugo">Hugo</a> using theme <a href="https://github.com/schollz/onetwothree">onetwothree</a> made by <a href="https://github.com/schollz">schollz</a>.</p>
-</footer>
+ <hr>
+ <p>"On the Internet, nobody knows you're a dog." - <em>Peter Steiner</em></p>
+ <p>This site was made with <a href="https://github.com/gohugoio/hugo">Hugo</a> using theme <a href="https://github.com/schollz/onetwothree">onetwothree</a> made by <a href="https://github.com/schollz">schollz</a>.</p>
+ </footer>
</body>
</html> \ No newline at end of file
diff --git a/layouts/partials/middle.html b/layouts/partials/middle.html
index 4ad2f9e..f6f4818 100644
--- a/layouts/partials/middle.html
+++ b/layouts/partials/middle.html
@@ -28,4 +28,3 @@
{{ partial "sidebar.html" . }}
</div>
</div>
- <hr>
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html
index 52ef791..89172b3 100644
--- a/layouts/partials/sidebar.html
+++ b/layouts/partials/sidebar.html
@@ -21,7 +21,9 @@
Search: <input type="text" id="myInput" size=15 />
</form>
</div>
-
+ <p>
+ <a href="/index.xml">RSS feed</a>
+ </p>
</div>
</div>
</div> \ No newline at end of file