├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── single.html │ └── list.html ├── partials │ ├── pagination.html │ ├── header.html │ ├── footer.html │ └── head.html ├── index.html └── post │ ├── summary.html │ └── single.html ├── exampleSite ├── static │ └── .gitkeep ├── .gitignore ├── config.toml └── content │ ├── about.md │ └── post │ ├── hugoisforlovers.md │ ├── migrate-from-jekyll.md │ └── goisforlovers.md ├── archetypes └── default.md ├── images ├── tn.png └── screenshot.png ├── static └── assets │ ├── fonts │ ├── icons.eot │ ├── icons.ttf │ ├── icons.woff │ └── icons.svg │ ├── bigfoot │ ├── readme-dev.md │ ├── package.json │ ├── bower.json │ ├── LICENSE.md │ ├── src │ │ └── scss │ │ │ ├── foundation │ │ │ ├── bigfoot-mixins.scss │ │ │ └── bigfoot-variables.scss │ │ │ ├── variants │ │ │ ├── bigfoot-bottom.scss │ │ │ └── bigfoot-number.scss │ │ │ └── base │ │ │ ├── bigfoot-button.scss │ │ │ └── bigfoot-popover.scss │ ├── README.md │ ├── Gruntfile.coffee │ ├── changelog.md │ └── dist │ │ ├── bigfoot-default.css.map │ │ ├── bigfoot-number.css.map │ │ ├── bigfoot-bottom.css.map │ │ ├── bigfoot-default.css │ │ ├── bigfoot-number.css │ │ ├── bigfoot-bottom.css │ │ ├── bigfoot.min.js │ │ ├── bigfoot-default.scss │ │ └── bigfoot-bottom.scss │ └── css │ ├── icons.css │ ├── normalize.css │ └── screen.css ├── theme.toml ├── LICENSE └── README.md /layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | themes 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytes-crafter/arabica/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytes-crafter/arabica/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/assets/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytes-crafter/arabica/HEAD/static/assets/fonts/icons.eot -------------------------------------------------------------------------------- /static/assets/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytes-crafter/arabica/HEAD/static/assets/fonts/icons.ttf -------------------------------------------------------------------------------- /static/assets/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytes-crafter/arabica/HEAD/static/assets/fonts/icons.woff -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ partial "head.html" . }} 4 |
5 | {{ partial "header.html" . }} 6 | {{ block "main" . }}{{ end }} 7 | {{ partial "footer.html" . }} 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/assets/bigfoot/readme-dev.md: -------------------------------------------------------------------------------- 1 | Updates to existing styles should be made in `src/scss/button.scss` and `src/scss/popover.scss`. New styles should be created as BEM-style variants on the existing button and popover styles. You will also have to update rules in `Gruntfile.js` in order to create the required `dist` files. 2 | -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- 1 | baseurl = "https://example.org/" 2 | title = "Arabica" 3 | author = "John Doe" 4 | paginate = 3 5 | theme = "arabica" 6 | 7 | [params] 8 | description = "A minimal Hugo theme" 9 | dateFormatToUse = "2006-01-02" 10 | replaceGoogleFonts = "fonts.loli.net" 11 | twitter = "example" 12 | facebook = "example" 13 | -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "body_class" }}page-template{{ end }} 2 | {{ define "main" }} 3 |10 | {{ .Summary }} … » 11 |
12 |125 | {{ .Get "caption" }} 126 | {{ with .Get "attrlink"}} {{ end }} 127 | {{ .Get "attr" }} 128 | {{ if .Get "attrlink"}} {{ end }} 129 |
{{ end }} 130 |