├── site
├── content
│ ├── .keep
│ ├── about.md
│ └── post
│ │ ├── first.md
│ │ └── second.md
├── data
│ └── .keep
├── static
│ ├── .keep
│ ├── images
│ │ ├── logo.png
│ │ └── cover.jpg
│ └── admin
│ │ ├── index.html
│ │ └── config.yml
├── themes
│ └── hugo-theme-casper
│ │ ├── .gitignore
│ │ ├── images
│ │ ├── tn.png
│ │ ├── screen.png
│ │ └── screenshot.png
│ │ ├── static
│ │ ├── fonts
│ │ │ ├── Genericons.eot
│ │ │ ├── Genericons.ttf
│ │ │ ├── Genericons.woff
│ │ │ ├── genericons.css
│ │ │ └── example.html
│ │ ├── js
│ │ │ ├── index.js
│ │ │ └── jquery.fitvids.js
│ │ └── css
│ │ │ ├── nav.css
│ │ │ └── screen.css
│ │ ├── data
│ │ └── authors
│ │ │ └── example.yml
│ │ ├── archetypes
│ │ └── default.md
│ │ ├── layouts
│ │ ├── partials
│ │ │ ├── pagination.html
│ │ │ ├── disqus.html
│ │ │ ├── suggestions.html
│ │ │ ├── footer.html
│ │ │ ├── author.html
│ │ │ ├── navigation.html
│ │ │ ├── twitter_card.html
│ │ │ ├── share.html
│ │ │ ├── li.html
│ │ │ └── header.html
│ │ ├── page
│ │ │ ├── list.html
│ │ │ ├── cover.html
│ │ │ └── single.html
│ │ ├── _default
│ │ │ ├── list.html
│ │ │ └── single.html
│ │ ├── 404.html
│ │ └── index.html
│ │ ├── theme.toml
│ │ ├── LICENSE.md
│ │ └── README.md
└── config.toml
├── .gitignore
├── src
├── js
│ └── app.js
└── css
│ └── imports
│ └── reset.css
├── .babelrc
├── netlify.toml
├── npm-shrinkwrap.json
├── background.png.webloc
├── webpack.conf.js
├── package.json
├── gulpfile.babel.js
├── .eslintrc
└── README.md
/site/content/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/site/data/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/site/static/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | dist/
3 | .DS_Store
4 |
--------------------------------------------------------------------------------
/src/js/app.js:
--------------------------------------------------------------------------------
1 | // JS Goes here - ES6 supported
2 |
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/.gitignore:
--------------------------------------------------------------------------------
1 | tmp
2 | .DS_Store
--------------------------------------------------------------------------------
/src/css/imports/reset.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-size: 16px;
3 | }
4 |
--------------------------------------------------------------------------------
/site/static/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/static/images/logo.png
--------------------------------------------------------------------------------
/site/static/images/cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/static/images/cover.jpg
--------------------------------------------------------------------------------
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015"],
3 | "plugins": [
4 | "syntax-object-rest-spread",
5 | "transform-object-rest-spread"
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | command = "npm run build"
3 | publish = "dist"
4 |
5 | [context.deploy-preview]
6 | command = "npm run build-preview"
7 |
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/images/tn.png
--------------------------------------------------------------------------------
/npm-shrinkwrap.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "graceful-fs": {
4 | "version": "4.2.2"
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/images/screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/images/screen.png
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/images/screenshot.png
--------------------------------------------------------------------------------
/site/content/about.md:
--------------------------------------------------------------------------------
1 | +++
2 | date = "2016-09-09T10:15:23-04:00"
3 | draft = false
4 | title = "about"
5 |
6 | +++
7 |
8 | ## This is where our page Markdown content lives.
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/static/fonts/Genericons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/static/fonts/Genericons.eot
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/static/fonts/Genericons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/static/fonts/Genericons.ttf
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/data/authors/example.yml:
--------------------------------------------------------------------------------
1 | name: "John Doe"
2 | bio: "The most generic man in the world"
3 | location: "Normal, Il"
4 | website: "http://example.com"
5 |
--------------------------------------------------------------------------------
/site/themes/hugo-theme-casper/static/fonts/Genericons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bdougie/casper-cms-template/HEAD/site/themes/hugo-theme-casper/static/fonts/Genericons.woff
--------------------------------------------------------------------------------
/background.png.webloc:
--------------------------------------------------------------------------------
1 |
2 |
3 |