Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guidefari/here_hugo


https://github.com/guidefari/here_hugo

blog hugo portfolio

Last synced: 2 months ago
JSON representation

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


{{ range .Params.tags }}
{{ . }}
{{ end }}

```

# 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
```