Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guidefari/here_hugo
https://github.com/guidefari/here_hugo
blog hugo portfolio
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/guidefari/here_hugo
- Owner: guidefari
- Created: 2021-10-10T07:08:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T20:54:50.000Z (3 months ago)
- Last Synced: 2024-10-26T08:07:15.543Z (3 months ago)
- Topics: blog, hugo, portfolio
- Language: HTML
- Homepage: https://guidefari.com
- Size: 6.98 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo
- [ ] 404 page - amazing how I've lived so long without one.
- [ ] Search. Maybe even a semantic search?
- [ ] RSS feed
- https://gitlab.com/jgarr/blog/-/blob/main/layouts/_default/rss.xml# Post tags
```html
```# dark mode
```html
{{- if or (eq .Site.Params.mode "auto") (eq .Site.Params.mode "dark") (eq .Site.Params.mode "toggle") -}}
{{ $darkstyle := resources.Get "css/dark.css" | fingerprint }}
{{ end }}
```# Raw HTML in your markdown
add this to `config.yaml`
```yaml
markup:
goldmark:
renderer:
unsafe: true
```