diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-23 23:09:17 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-06-23 23:13:40 +0200 |
commit | a588d31babc97d8749cf531379c9c2e25d7225fa (patch) | |
tree | 3fc4b5261df6cd48655bb3a2fbd4d9257c4d6144 /themes/flamingo/layouts | |
parent | 4f3b7a9fbb951257a039a84cafcd9f897a6bc197 (diff) | |
download | gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.tar.gz gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.tar.bz2 gabrielgio.me-a588d31babc97d8749cf531379c9c2e25d7225fa.zip |
feat: Add openring feed
Add a nice way to suggest some feed I interested in.
Diffstat (limited to 'themes/flamingo/layouts')
-rw-r--r-- | themes/flamingo/layouts/index.html | 10 | ||||
-rw-r--r-- | themes/flamingo/layouts/partials/sidebar.html | 9 |
2 files changed, 17 insertions, 2 deletions
diff --git a/themes/flamingo/layouts/index.html b/themes/flamingo/layouts/index.html index c142435..0e07e11 100644 --- a/themes/flamingo/layouts/index.html +++ b/themes/flamingo/layouts/index.html @@ -7,7 +7,13 @@ {{ .Render "summary" }} {{ end }} </div> - <!-- {{ partial "pagination.html" . }} --> + <div> + <h3>WHAT I READ</h3> + </div> + <div> + <ul> + {{ partial "openring.html" . }} + </ul> + </div> </main> -<!-- {{ partial "sidebar.html" . }} --> {{ end }} diff --git a/themes/flamingo/layouts/partials/sidebar.html b/themes/flamingo/layouts/partials/sidebar.html index 9070f56..c7288f0 100644 --- a/themes/flamingo/layouts/partials/sidebar.html +++ b/themes/flamingo/layouts/partials/sidebar.html @@ -1,6 +1,15 @@ <aside> <div> <div> + <h3>WHAT I READ</h3> + </div> + <div> + <ul> + {{ partial "openring.html" . }} + </ul> + </div> + + <div> <h3>LATEST POSTS</h3> </div> <div> |