├── LICENSE.md ├── README.md ├── archetypes └── default.md ├── exampleSite ├── config.toml ├── content │ └── post │ │ ├── creating-a-new-theme.md │ │ ├── goisforlovers.md │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ └── tufte-css.md ├── public │ ├── 2014 │ │ ├── 03 │ │ │ └── migrate-to-hugo-from-jekyll │ │ │ │ └── index.html │ │ ├── 04 │ │ │ ├── getting-started-with-hugo │ │ │ │ └── index.html │ │ │ └── hugo-template-primer │ │ │ │ └── index.html │ │ └── 09 │ │ │ └── creating-a-new-theme │ │ │ └── index.html │ ├── 2017 │ │ └── 02 │ │ │ └── tufte-css-is-for-lovers │ │ │ └── index.html │ ├── .gitkeep │ ├── categories │ │ ├── design │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ ├── development │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ │ └── 1 │ │ │ │ └── index.html │ │ └── golang │ │ │ ├── index.html │ │ │ ├── index.xml │ │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── css │ │ ├── et-book │ │ │ ├── et-book-bold-line-figures │ │ │ │ ├── et-book-bold-line-figures.eot │ │ │ │ ├── et-book-bold-line-figures.svg │ │ │ │ ├── et-book-bold-line-figures.ttf │ │ │ │ └── et-book-bold-line-figures.woff │ │ │ ├── et-book-display-italic-old-style-figures │ │ │ │ ├── et-book-display-italic-old-style-figures.eot │ │ │ │ ├── et-book-display-italic-old-style-figures.svg │ │ │ │ ├── et-book-display-italic-old-style-figures.ttf │ │ │ │ └── et-book-display-italic-old-style-figures.woff │ │ │ ├── et-book-roman-line-figures │ │ │ │ ├── et-book-roman-line-figures.eot │ │ │ │ ├── et-book-roman-line-figures.svg │ │ │ │ ├── et-book-roman-line-figures.ttf │ │ │ │ └── et-book-roman-line-figures.woff │ │ │ ├── et-book-roman-old-style-figures │ │ │ │ ├── et-book-roman-old-style-figures.eot │ │ │ │ ├── et-book-roman-old-style-figures.svg │ │ │ │ ├── et-book-roman-old-style-figures.ttf │ │ │ │ └── et-book-roman-old-style-figures.woff │ │ │ └── et-book-semi-bold-old-style-figures │ │ │ │ ├── et-book-semi-bold-old-style-figures.eot │ │ │ │ ├── et-book-semi-bold-old-style-figures.svg │ │ │ │ ├── et-book-semi-bold-old-style-figures.ttf │ │ │ │ └── et-book-semi-bold-old-style-figures.woff │ │ ├── latex.css │ │ ├── style.css │ │ └── tufte.css │ ├── img │ │ ├── exports-imports.png │ │ ├── imagequilt-animal-sounds.png │ │ ├── imagequilt-chinese-calligraphy.png │ │ ├── napoleons-march.png │ │ ├── rhino.png │ │ └── table-example-be-page-159.png │ ├── index.html │ ├── index.xml │ ├── page │ │ └── 1 │ │ │ └── index.html │ ├── post │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ ├── sitemap.xml │ └── tags │ │ ├── css │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── development │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── go │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── golang │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── hugo │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ ├── templates │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ │ └── 1 │ │ │ └── index.html │ │ └── themes │ │ ├── index.html │ │ ├── index.xml │ │ └── page │ │ └── 1 │ │ └── index.html ├── static │ ├── .gitkeep │ └── img │ │ ├── exports-imports.png │ │ ├── imagequilt-animal-sounds.png │ │ ├── imagequilt-chinese-calligraphy.png │ │ ├── napoleons-march.png │ │ ├── rhino.png │ │ └── table-example-be-page-159.png └── themes │ └── .gitkeep ├── i18n ├── bg.yaml ├── de.yaml ├── en.yaml ├── fr.yaml ├── id.yaml ├── pt.yaml └── ru.yaml ├── layouts ├── _default │ ├── baseof.html │ ├── list.html │ ├── single.html │ └── summary.html └── partials │ ├── head-meta.html │ └── meta-terms.html ├── screenshot.png ├── static └── css │ ├── et-book │ ├── et-book-bold-line-figures │ │ ├── et-book-bold-line-figures.eot │ │ ├── et-book-bold-line-figures.svg │ │ ├── et-book-bold-line-figures.ttf │ │ └── et-book-bold-line-figures.woff │ ├── et-book-display-italic-old-style-figures │ │ ├── et-book-display-italic-old-style-figures.eot │ │ ├── et-book-display-italic-old-style-figures.svg │ │ ├── et-book-display-italic-old-style-figures.ttf │ │ └── et-book-display-italic-old-style-figures.woff │ ├── et-book-roman-line-figures │ │ ├── et-book-roman-line-figures.eot │ │ ├── et-book-roman-line-figures.svg │ │ ├── et-book-roman-line-figures.ttf │ │ └── et-book-roman-line-figures.woff │ ├── et-book-roman-old-style-figures │ │ ├── et-book-roman-old-style-figures.eot │ │ ├── et-book-roman-old-style-figures.svg │ │ ├── et-book-roman-old-style-figures.ttf │ │ └── et-book-roman-old-style-figures.woff │ └── et-book-semi-bold-old-style-figures │ │ ├── et-book-semi-bold-old-style-figures.eot │ │ ├── et-book-semi-bold-old-style-figures.svg │ │ ├── et-book-semi-bold-old-style-figures.ttf │ │ └── et-book-semi-bold-old-style-figures.woff │ ├── latex.css │ ├── style.css │ └── tufte.css └── theme.toml /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/post/creating-a-new-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/content/post/creating-a-new-theme.md -------------------------------------------------------------------------------- /exampleSite/content/post/goisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/content/post/goisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/post/hugoisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/content/post/hugoisforlovers.md -------------------------------------------------------------------------------- /exampleSite/content/post/migrate-from-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/content/post/migrate-from-jekyll.md -------------------------------------------------------------------------------- /exampleSite/content/post/tufte-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/content/post/tufte-css.md -------------------------------------------------------------------------------- /exampleSite/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/public/2014/03/migrate-to-hugo-from-jekyll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/2014/03/migrate-to-hugo-from-jekyll/index.html -------------------------------------------------------------------------------- /exampleSite/public/2014/04/getting-started-with-hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/2014/04/getting-started-with-hugo/index.html -------------------------------------------------------------------------------- /exampleSite/public/2014/04/hugo-template-primer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/2014/04/hugo-template-primer/index.html -------------------------------------------------------------------------------- /exampleSite/public/2014/09/creating-a-new-theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/2014/09/creating-a-new-theme/index.html -------------------------------------------------------------------------------- /exampleSite/public/2017/02/tufte-css-is-for-lovers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/2017/02/tufte-css-is-for-lovers/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/design/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/design/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/design/index.xml -------------------------------------------------------------------------------- /exampleSite/public/categories/design/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/design/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/development/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/development/index.xml -------------------------------------------------------------------------------- /exampleSite/public/categories/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/development/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/golang/index.html -------------------------------------------------------------------------------- /exampleSite/public/categories/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/golang/index.xml -------------------------------------------------------------------------------- /exampleSite/public/categories/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/categories/golang/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf -------------------------------------------------------------------------------- /exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff -------------------------------------------------------------------------------- /exampleSite/public/css/latex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/latex.css -------------------------------------------------------------------------------- /exampleSite/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/style.css -------------------------------------------------------------------------------- /exampleSite/public/css/tufte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/css/tufte.css -------------------------------------------------------------------------------- /exampleSite/public/img/exports-imports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/exports-imports.png -------------------------------------------------------------------------------- /exampleSite/public/img/imagequilt-animal-sounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/imagequilt-animal-sounds.png -------------------------------------------------------------------------------- /exampleSite/public/img/imagequilt-chinese-calligraphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/imagequilt-chinese-calligraphy.png -------------------------------------------------------------------------------- /exampleSite/public/img/napoleons-march.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/napoleons-march.png -------------------------------------------------------------------------------- /exampleSite/public/img/rhino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/rhino.png -------------------------------------------------------------------------------- /exampleSite/public/img/table-example-be-page-159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/img/table-example-be-page-159.png -------------------------------------------------------------------------------- /exampleSite/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/index.html -------------------------------------------------------------------------------- /exampleSite/public/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/index.xml -------------------------------------------------------------------------------- /exampleSite/public/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/post/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/post/index.html -------------------------------------------------------------------------------- /exampleSite/public/post/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/post/index.xml -------------------------------------------------------------------------------- /exampleSite/public/post/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/post/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/sitemap.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/css/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/css/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/css/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/css/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/css/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/development/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/development/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/development/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/development/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/development/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/development/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/go/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/go/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/go/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/go/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/go/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/go/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/golang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/golang/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/golang/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/golang/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/golang/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/golang/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/hugo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/hugo/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/hugo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/hugo/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/hugo/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/hugo/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/templates/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/templates/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/templates/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/templates/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/templates/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/themes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/themes/index.html -------------------------------------------------------------------------------- /exampleSite/public/tags/themes/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/themes/index.xml -------------------------------------------------------------------------------- /exampleSite/public/tags/themes/page/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/public/tags/themes/page/1/index.html -------------------------------------------------------------------------------- /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/img/exports-imports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/exports-imports.png -------------------------------------------------------------------------------- /exampleSite/static/img/imagequilt-animal-sounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/imagequilt-animal-sounds.png -------------------------------------------------------------------------------- /exampleSite/static/img/imagequilt-chinese-calligraphy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/imagequilt-chinese-calligraphy.png -------------------------------------------------------------------------------- /exampleSite/static/img/napoleons-march.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/napoleons-march.png -------------------------------------------------------------------------------- /exampleSite/static/img/rhino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/rhino.png -------------------------------------------------------------------------------- /exampleSite/static/img/table-example-be-page-159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/exampleSite/static/img/table-example-be-page-159.png -------------------------------------------------------------------------------- /exampleSite/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /i18n/bg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/bg.yaml -------------------------------------------------------------------------------- /i18n/de.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/de.yaml -------------------------------------------------------------------------------- /i18n/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/en.yaml -------------------------------------------------------------------------------- /i18n/fr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/fr.yaml -------------------------------------------------------------------------------- /i18n/id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/id.yaml -------------------------------------------------------------------------------- /i18n/pt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/pt.yaml -------------------------------------------------------------------------------- /i18n/ru.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/i18n/ru.yaml -------------------------------------------------------------------------------- /layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/_default/baseof.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/_default/summary.html -------------------------------------------------------------------------------- /layouts/partials/head-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/partials/head-meta.html -------------------------------------------------------------------------------- /layouts/partials/meta-terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/layouts/partials/meta-terms.html -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/screenshot.png -------------------------------------------------------------------------------- /static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot -------------------------------------------------------------------------------- /static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg -------------------------------------------------------------------------------- /static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf -------------------------------------------------------------------------------- /static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff -------------------------------------------------------------------------------- /static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot -------------------------------------------------------------------------------- /static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg -------------------------------------------------------------------------------- /static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf -------------------------------------------------------------------------------- /static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf -------------------------------------------------------------------------------- /static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff -------------------------------------------------------------------------------- /static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot -------------------------------------------------------------------------------- /static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg -------------------------------------------------------------------------------- /static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf -------------------------------------------------------------------------------- /static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff -------------------------------------------------------------------------------- /static/css/latex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/latex.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/tufte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/static/css/tufte.css -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanorth/hugo-theme-tufte-css/HEAD/theme.toml --------------------------------------------------------------------------------