aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2022-04-03 02:18:04 -0400
committerThedro Neely <thedroneely@gmail.com>2022-04-03 02:18:04 -0400
commit309d8c1c8a97843fc6187dd3f232d8fb5ea31abe (patch)
tree8c2316a1642b1eeb907acea3241120deec572abc /app
parent0c25632a7de1cfce8289b654586d56fe39a19ac0 (diff)
downloadthedroneely.com-309d8c1c8a97843fc6187dd3f232d8fb5ea31abe.tar.gz
thedroneely.com-309d8c1c8a97843fc6187dd3f232d8fb5ea31abe.tar.bz2
thedroneely.com-309d8c1c8a97843fc6187dd3f232d8fb5ea31abe.zip
generators/hugo/layouts/_default: Add JSON Feed
Diffstat (limited to 'app')
-rw-r--r--app/views/partials/footer.php2
-rw-r--r--app/views/snippets/rss.php1
2 files changed, 3 insertions, 0 deletions
diff --git a/app/views/partials/footer.php b/app/views/partials/footer.php
index e4c9aac..5f35a25 100644
--- a/app/views/partials/footer.php
+++ b/app/views/partials/footer.php
@@ -11,6 +11,8 @@
<a href="/posts/rss.xml">RSS Feed</a> |
+ <a href="/index.json">JSON Feed</a> |
+
<a href="/resume">Resume</a> |
<a rel="me" href="https://gitlab.com/tdro">Gitlab</a> |
diff --git a/app/views/snippets/rss.php b/app/views/snippets/rss.php
index 1b8b6df..a37df92 100644
--- a/app/views/snippets/rss.php
+++ b/app/views/snippets/rss.php
@@ -1,4 +1,5 @@
<link href="/rss.xml" rel="alternate" type="application/rss+xml" title="All at Thedro Neely"/>
+<link href="/index.json" rel="alternate" type="application/json" title="All at Thedro Neely"/>
<link href="/posts/rss.xml" rel="alternate" type="application/rss+xml" title="Posts at Thedro Neely"/>
<link href="/projects/rss.xml" rel="alternate" type="application/rss+xml" title="Projects at Thedro Neely"/>
<link href="/abstracts/rss.xml" rel="alternate" type="application/rss+xml" title="Abstracts at Thedro Neely"/>