12 | {{ partial "footer" . }} 13 |
├── .gitignore ├── static ├── logo.png └── main.css ├── Makefile ├── layouts ├── partials │ ├── site_js.html │ ├── footer.html │ ├── site_head.html │ └── navbar.html ├── _default │ ├── single.html │ └── baseof.html └── index.html ├── .github ├── dependabot.yml └── workflows │ └── deploy.yml ├── content ├── _index.md ├── jobs.md ├── tools.md ├── learning.md ├── journals.md ├── database.md └── codes.md ├── .readthedocs.yaml ├── config.toml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | .vscode 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seismo-learn/links/HEAD/static/logo.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: build 2 | 3 | build: 4 | @echo "Building the website..." 5 | @hugo 6 | 7 | serve: 8 | hugo server 9 | 10 | clean: 11 | rm -rf public resources 12 | -------------------------------------------------------------------------------- /layouts/partials/site_js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
8 |
9 |
10 | {{ .name }}
11 |
12 |