{{ .Title }}
5 | {{ end }} 6 |7 | 10 |
11 |├── archetypes
└── default.md
├── images
├── tn.png
└── screenshot.png
├── static
├── favicon.ico
├── mstile-70x70.png
├── favicon-16x16.png
├── favicon-32x32.png
├── mstile-144x144.png
├── mstile-150x150.png
├── mstile-310x150.png
├── mstile-310x310.png
├── apple-touch-icon.png
├── fonts
│ ├── FiraSans-Bold.eot
│ ├── FiraSans-Bold.ttf
│ ├── FiraSans-Bold.woff
│ ├── FiraSans-Book.eot
│ ├── FiraSans-Book.ttf
│ ├── FiraSans-Book.woff
│ ├── FiraSans-Light.eot
│ ├── FiraSans-Light.ttf
│ ├── FiraCode-Regular.eot
│ ├── FiraCode-Regular.otf
│ ├── FiraCode-Regular.ttf
│ ├── FiraSans-Bold.woff2
│ ├── FiraSans-Book.woff2
│ ├── FiraSans-Light.woff
│ ├── FiraSans-Light.woff2
│ ├── FiraCode-Regular.woff
│ ├── FiraCode-Regular.woff2
│ ├── charter_bold-webfont.eot
│ ├── charter_bold-webfont.ttf
│ ├── charter_bold-webfont.woff
│ ├── charter_italic-webfont.eot
│ ├── charter_italic-webfont.ttf
│ ├── charter_italic-webfont.woff
│ ├── charter_regular-webfont.eot
│ ├── charter_regular-webfont.ttf
│ ├── charter_regular-webfont.woff
│ ├── charter_bold_italic-webfont.eot
│ ├── charter_bold_italic-webfont.ttf
│ ├── charter_bold_italic-webfont.woff
│ ├── charter_license.txt
│ ├── fira-sans_license.txt
│ └── fira-code_license.txt
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── browserconfig.xml
├── icons
│ ├── stack-overflow.svg
│ ├── facebook.svg
│ ├── flickr.svg
│ ├── linkedin.svg
│ ├── tumblr.svg
│ ├── medium.svg
│ ├── gitlab.svg
│ ├── envelope.svg
│ ├── microblog.svg
│ ├── twitter.svg
│ ├── reddit-alien.svg
│ ├── instagram.svg
│ ├── github.svg
│ ├── keybase.svg
│ └── glitch.svg
├── site.webmanifest
├── images
│ └── site-logo.svg
├── css
│ ├── fonts.css
│ └── style.css
└── safari-pinned-tab.svg
├── exampleSite
├── archetypes
│ └── default.md
├── content
│ ├── adding-menu-items.md
│ ├── about.md
│ └── post
│ │ ├── author-bios.md
│ │ ├── featured-typefaces.md
│ │ └── introducing-indigo.md
└── config.toml
├── layouts
├── _default
│ ├── taxonomy.html
│ ├── list.html
│ ├── li.html
│ └── single.html
├── index.html
├── partials
│ ├── pagenav.html
│ ├── header.html
│ ├── pagination.html
│ ├── footer.html
│ ├── head.html
│ └── social.html
├── 404.html
└── index.xml
├── theme.toml
├── .gitignore
├── LICENSE.md
├── CONTRIBUTING.md
├── config.toml.example
├── CODE_OF_CONDUCT.md
├── README.md
└── CHANGELOG.md
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | +++
3 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/images/tn.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/images/screenshot.png
--------------------------------------------------------------------------------
/static/mstile-70x70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/mstile-70x70.png
--------------------------------------------------------------------------------
/static/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/favicon-16x16.png
--------------------------------------------------------------------------------
/static/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/favicon-32x32.png
--------------------------------------------------------------------------------
/static/mstile-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/mstile-144x144.png
--------------------------------------------------------------------------------
/static/mstile-150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/mstile-150x150.png
--------------------------------------------------------------------------------
/static/mstile-310x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/mstile-310x150.png
--------------------------------------------------------------------------------
/static/mstile-310x310.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/mstile-310x310.png
--------------------------------------------------------------------------------
/static/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/apple-touch-icon.png
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Bold.eot
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Bold.ttf
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Bold.woff
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Book.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Book.eot
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Book.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Book.ttf
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Book.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Book.woff
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Light.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Light.eot
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Light.ttf
--------------------------------------------------------------------------------
/static/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/android-chrome-192x192.png
--------------------------------------------------------------------------------
/static/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/android-chrome-512x512.png
--------------------------------------------------------------------------------
/static/fonts/FiraCode-Regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraCode-Regular.eot
--------------------------------------------------------------------------------
/static/fonts/FiraCode-Regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraCode-Regular.otf
--------------------------------------------------------------------------------
/static/fonts/FiraCode-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraCode-Regular.ttf
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Bold.woff2
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Book.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Book.woff2
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Light.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Light.woff
--------------------------------------------------------------------------------
/static/fonts/FiraSans-Light.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraSans-Light.woff2
--------------------------------------------------------------------------------
/static/fonts/FiraCode-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraCode-Regular.woff
--------------------------------------------------------------------------------
/static/fonts/FiraCode-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/FiraCode-Regular.woff2
--------------------------------------------------------------------------------
/static/fonts/charter_bold-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold-webfont.eot
--------------------------------------------------------------------------------
/static/fonts/charter_bold-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold-webfont.ttf
--------------------------------------------------------------------------------
/static/fonts/charter_bold-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold-webfont.woff
--------------------------------------------------------------------------------
/exampleSite/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | draft: true
5 | ---
6 |
--------------------------------------------------------------------------------
/static/fonts/charter_italic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_italic-webfont.eot
--------------------------------------------------------------------------------
/static/fonts/charter_italic-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_italic-webfont.ttf
--------------------------------------------------------------------------------
/static/fonts/charter_italic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_italic-webfont.woff
--------------------------------------------------------------------------------
/static/fonts/charter_regular-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_regular-webfont.eot
--------------------------------------------------------------------------------
/static/fonts/charter_regular-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_regular-webfont.ttf
--------------------------------------------------------------------------------
/static/fonts/charter_regular-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_regular-webfont.woff
--------------------------------------------------------------------------------
/static/fonts/charter_bold_italic-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold_italic-webfont.eot
--------------------------------------------------------------------------------
/static/fonts/charter_bold_italic-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold_italic-webfont.ttf
--------------------------------------------------------------------------------
/static/fonts/charter_bold_italic-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/AngeloStavrow/indigo/HEAD/static/fonts/charter_bold_italic-webfont.woff
--------------------------------------------------------------------------------
/static/browserconfig.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 | 10 |
11 |15 | {{ . }} 16 |
17 | {{ end }} 18 |16 | The page you were looking for doesn't exist. Would you like to go to the home page? 17 |
18 |
8 | {{ .Site.Params.IndieWeb.City }},
9 | {{ .Site.Params.IndieWeb.Country }}
10 | Email me
11 |
{{ .Site.Params.Biography }}
14 |Posted on 13 | {{ if $author }} by {{ $author }}{{ end }} 17 |
18 | {{ end }} 19 | {{ if .Params.categories }} 20 |Category: 21 | {{ range .Params.categories }} 22 | {{ . }} 23 | {{ end }} 24 |
25 |37 | 40 |
41 |57 | 60 |
61 |