diff --git a/config/_default/menu.yaml b/config/_default/menu.yaml index 01130576..6d291ecd 100644 --- a/config/_default/menu.yaml +++ b/config/_default/menu.yaml @@ -15,15 +15,7 @@ main: name: "Photos" url: "/photos" weight: 25 - - pageRef: "/feeds" - name: "Feeds" - url: "/feeds" + - pageRef: "/explore" + name: "Explore" + url: "/explore" weight: 30 - - pageRef: "/now" - name: "Now" - url: "/now" - weight: 40 - - pageRef: "/uses" - name: "Uses" - url: "/uses" - weight: 50 diff --git a/content/blogroll.md b/content/blogroll.md new file mode 100644 index 00000000..f2697d9e --- /dev/null +++ b/content/blogroll.md @@ -0,0 +1,8 @@ +--- +title: "Blogroll" +type: page +specialpost: true + +--- + +{{< opmlblogroll >}} diff --git a/content/connect.md b/content/connect.md new file mode 100644 index 00000000..5689e85c --- /dev/null +++ b/content/connect.md @@ -0,0 +1,18 @@ +--- +title: "Connect" +specialpost: true +type: page +outputs: +- 'html' + +--- + +This is where you can connect with me. +I only do asynchronous communication so you can reach/follow me via the following means: + +* __Email__ [me@fundor333.com](mail:me@fundor333.com) +* __Feed and Newsletter__ [fundor333.com/feeds/](https://fundor333.com/feeds/) +* __Github__ [github.com/fundor333](https://github.com/fundor333) +* __Facebook__ [facebook.com/fundor333](https://www.facebook.com/fundor333) +* __Mastodon__ [mastodon.social/@fundor333](https://mastodon.social/@fundor333) +* __Instagram__ [instagram.com/fundor333/](https://www.instagram.com/fundor333/) diff --git a/content/explore.md b/content/explore.md new file mode 100644 index 00000000..22ceb29a --- /dev/null +++ b/content/explore.md @@ -0,0 +1,15 @@ +--- +title: "Explore" +type: explore +specialpost: true +outputs: +- 'html' +--- + +A list of all pages on this website, in alphabetical order. + +* [Blogroll](/blogroll) +* [Connect](/connect) +* [Feeds](/feeds) +* [Now](/now) +* [Uses](/uses) diff --git a/content/now.md b/content/now.md index 5f55afd3..fd5f3c32 100644 --- a/content/now.md +++ b/content/now.md @@ -14,6 +14,7 @@ Here I write what I'm working or studing for now: * [Fundor333](https://fundor333.com) - This blog make with Hugo and love. The Css framework change somethime. Now it's boostrap 4 with font awesome * [DigitalTeaRoom](https://digitaltearoom.com/) - My blog about Tea and other stuff i like/love +* [DTR Newsletter](https://newsletter.digitaltearoom.com/) - My newsletter, Italian ## Hardware @@ -38,9 +39,3 @@ Here I write what I'm working or studing for now: * [Bofh Oh-My-Zsh](https://github.com/fundor333/bofh) - Plugin for ohmyszh for adding a fortune style message from a BOFH * [Smile Oh-My-Zsh](https://github.com/fundor333/smile) - An oh-my-zsh plugin for printing smile - - - - - - diff --git a/data/blogroll.xml b/data/blogroll.xml new file mode 100644 index 00000000..477620c9 --- /dev/null +++ b/data/blogroll.xml @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/layouts/partials/custom-head.html b/layouts/partials/custom-head.html index a9812f96..8ad24dd6 100644 --- a/layouts/partials/custom-head.html +++ b/layouts/partials/custom-head.html @@ -5,3 +5,9 @@ + + diff --git a/layouts/shortcodes/opmlblogroll.html b/layouts/shortcodes/opmlblogroll.html new file mode 100644 index 00000000..f1fea046 --- /dev/null +++ b/layouts/shortcodes/opmlblogroll.html @@ -0,0 +1,16 @@ +{{ $url := "https://appletune.fundor333.com/api//blogroolgroup/?format=json" }} + +{{ with resources.GetRemote $url }} +{{- $content := .Content | transform.Unmarshal -}} + +{{- range $content -}} +

{{ .name }}

+ +{{ end }} + + +{{ end }}