diff --git a/blog/themes/hugo-theme-chunky-poster/.babelrc b/blog/themes/hugo-theme-chunky-poster/.babelrc new file mode 100644 index 0000000..f08644a --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/.babelrc @@ -0,0 +1,8 @@ +{ + "presets": [ + "@babel/preset-env", + ], + "plugins": [ + "@babel/plugin-transform-runtime", + ], +} diff --git a/blog/themes/hugo-theme-chunky-poster/.browserslistrc b/blog/themes/hugo-theme-chunky-poster/.browserslistrc new file mode 100644 index 0000000..d6471a3 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/.browserslistrc @@ -0,0 +1,2 @@ +> 1% +last 2 versions diff --git a/blog/themes/hugo-theme-chunky-poster/.circleci/config.yml b/blog/themes/hugo-theme-chunky-poster/.circleci/config.yml new file mode 100644 index 0000000..4fead7a --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/.circleci/config.yml @@ -0,0 +1,52 @@ +orbs: + hugo: circleci/hugo@0 + node: circleci/node@1.1 +version: 2.1 + +jobs: + test: + executor: + name: node/default + tag: '13.6.0' + steps: + - checkout + - node/with-cache: + steps: + - run: yarn + - run: yarn build + build: + docker: + - image: cibuilds/hugo:latest + working_directory: ~/hugo-theme-chunky-poster + steps: + - checkout + - hugo/hugo-build: + source: exampleSite + extra-flags: '--themesDir ../.. -t "hugo-theme-chunky-poster" --baseURL "https://hugo-theme-chunky-poster.netlify.com"' + - persist_to_workspace: + root: . + paths: + - exampleSite/public + - netlify.toml + deploy: + executor: + name: node/default + tag: '13.1.0' + working_directory: ~/site + steps: + - attach_workspace: + at: ~/site + - run: npm i netlify-cli + - run: ./node_modules/.bin/netlify deploy --site $NETLIFY_SITE_ID --auth $NETLIFY_AUTH_TOKEN --prod --message "Deploy via Circle CI." + +workflows: + main: + jobs: + - test + - build + - deploy: + filters: + branches: + only: master + requires: + - build diff --git a/blog/themes/hugo-theme-chunky-poster/.gitignore b/blog/themes/hugo-theme-chunky-poster/.gitignore new file mode 100644 index 0000000..a50e60f --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/.gitignore @@ -0,0 +1,15 @@ +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +node_modules/ +.npm +.yarn-integrity +.sass-cache/ +*.css.map +*.sass.map +*.scss.map + +# Local Netlify folder +.netlify \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/.nvmrc b/blog/themes/hugo-theme-chunky-poster/.nvmrc new file mode 100644 index 0000000..7eec03f --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/.nvmrc @@ -0,0 +1 @@ +v13.6.0 diff --git a/blog/themes/hugo-theme-chunky-poster/LICENSE b/blog/themes/hugo-theme-chunky-poster/LICENSE new file mode 100644 index 0000000..46fe619 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2019 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/blog/themes/hugo-theme-chunky-poster/README.md b/blog/themes/hugo-theme-chunky-poster/README.md new file mode 100644 index 0000000..3d4aa1d --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/README.md @@ -0,0 +1,133 @@ +# Chunky poster + +[![CircleCI](https://img.shields.io/circleci/build/github/puresyntax71/hugo-theme-chunky-poster)](https://circleci.com/gh/puresyntax71/hugo-theme-chunky-poster/tree/master) + +A simple, bootstrap 4 based blog theme. The structure and design is based on the [Prisma blog](https://www.prisma.io/blog/). + +[Demo](https://hugo-theme-chunky-poster.netlify.com) | [Demo 2](https://themes.gohugo.io/theme/hugo-theme-chunky-poster) + +# Screenshot + +![Chunky poster](https://github.com/puresyntax71/hugo-theme-chunky-poster/raw/master/images/screenshot-responsive.png) + +# Features + +* Multi-author +* Image processing +* Basic i18n +* Prism +* LazyLoad +* Commento +* Image gallery + +# Usage + +```shell +git clone https://github.com/puresyntax71/hugo-theme-chunky-poster.git +``` + +Check out the configuration at [`exampleSite/config.toml`](exampleSite/config.toml) for configuring your Hugo site. + +## Authors + +The authors structure is based on this [blog post](https://www.netlify.com/blog/2018/07/24/hugo-tips-how-to-create-author-pages/). + +1. Add the taxonomy ["author"](exampleSite/config.toml#L28). +2. `hugo new authors/john-doe/_index.md` +3. Configure the author metadata `twitter`. +4. Configure the author metadata `images`. First image on the list will be used as the avatar and on the profile page. Images are page resources under the author e.g. `content/authors/john-doe/image.png`. +5. Assign the author to a content: + + ```yaml + --- + authors: ["John Doe"] + --- + ``` + +## Content images + +The images structure is based on this [blog post](https://forestry.io/blog/how-to-use-hugo-s-image-processing-with-forestry/). + +Upload the images that will be used on content pages under `content/images` and create the file `content/images/index.md` with the front matter: + +```yaml +--- +headless: true +--- +``` + +Set the path to the image in a `post` content under the `images` property: + +```yaml +--- +images: ["/images/image.png"] +--- +``` + +The first image on the list will be used as the "cover" image on a post. + +## Prism + +Configure [Prism](https://prismjs.com/) under `[params.prismJS]` and set `enable` to `true`. Change the theme under `theme`. + +```toml +[params] + [params.prismJS] + enable = true + theme = "okaidia" +``` + +## Commento + +Configure [Commento](https://commento.io/) under `[params.commento]`. Set `enable` to `true` and add the URL at `url`: + +```toml +[params] + [params.commento] + enable = true + url = "https://somename.commento.io" +``` + +## Share + +Enable sharing under `params` with `share` set to `true` and disable per-post sharing by setting `share` to `false` in the front matter. + +```toml +[params] + share = true +``` + +```yaml +--- +share: false +--- +``` + +## Image gallery + +The image gallery feature uses the [`ekko-lightbox`](https://github.com/ashleydw/lightbox/) and `figure` shortcode. This is just a simple implementation of the lightbox gallery feature from the library. + +# Customization + +Fork the project and run `yarn watch` during development. + +> The project has an `.nvmrc` if you wish to use [`nvm`](https://github.com/nvm-sh/nvm). + +The application javascript file is located at `src/js/app.js`. + +For customizing SCSS, the main entrypoint is at `src/scss/style.scss`. Bootstrap variables can be overridden in the `_variables.scss` file. The theme's styles are located at `src/scss/chunky-poster.scss`. + +For production, you can run `yarn build` for the assets to be updated. + +# Credits + +* [Victor Hugo](https://github.com/netlify-templates/victor-hugo) +* [hugo-theme-even](https://github.com/olOwOlo/hugo-theme-even) +* [Blank](https://github.com/vimux/blank/) +* [CleanWhite](https://github.com/zhaohuabing/hugo-theme-cleanwhite) + +Images from [Unsplash](https://unsplash.com/) and [Freepik](https://www.freepik.com/). + +# License + +This theme is released under the [MIT license](LICENSE). diff --git a/blog/themes/hugo-theme-chunky-poster/archetypes/authors.md b/blog/themes/hugo-theme-chunky-poster/archetypes/authors.md new file mode 100644 index 0000000..e42f75a --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/archetypes/authors.md @@ -0,0 +1,5 @@ +--- +name: "{{ replace .Name "-" " " | title }}" +images: [] +twitter: "" +--- diff --git a/blog/themes/hugo-theme-chunky-poster/archetypes/default.md b/blog/themes/hugo-theme-chunky-poster/archetypes/default.md new file mode 100644 index 0000000..fdccff8 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/archetypes/default.md @@ -0,0 +1,4 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +--- diff --git a/blog/themes/hugo-theme-chunky-poster/archetypes/post.md b/blog/themes/hugo-theme-chunky-poster/archetypes/post.md new file mode 100644 index 0000000..393a83c --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/archetypes/post.md @@ -0,0 +1,8 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +images: [] +categories: [] +tags: [] +authors: [] +--- diff --git a/blog/themes/hugo-theme-chunky-poster/data/chunky-poster/assets.json b/blog/themes/hugo-theme-chunky-poster/data/chunky-poster/assets.json new file mode 100644 index 0000000..c06480d --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/data/chunky-poster/assets.json @@ -0,0 +1,6 @@ +{ + "main": { + "css": "main.37ab3f61b95417873748.min.css", + "js": "main.d608eadfe5ac0688902e.min.js" + } +} \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/.gitignore b/blog/themes/hugo-theme-chunky-poster/exampleSite/.gitignore new file mode 100755 index 0000000..ca4d540 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/.gitignore @@ -0,0 +1,27 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test + +/public +/themes +.DS_Store diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/LICENSE b/blog/themes/hugo-theme-chunky-poster/exampleSite/LICENSE new file mode 100755 index 0000000..4527efb --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Steve Francia + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/README.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/README.md new file mode 100755 index 0000000..aa38bb6 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/README.md @@ -0,0 +1,22 @@ +# hugoBasicExample + +This repository offers an example site for [Hugo](https://gohugo.io/) and also it provides the default content for demos hosted on the [Hugo Themes Showcase](https://themes.gohugo.io/). + +# Using + +1. [Install Hugo](https://gohugo.io/overview/installing/) +2. Clone this repository +```bash +git clone https://github.com/gohugoio/hugoBasicExample.git +cd hugoBasicExample +``` +3. Clone the repository you want to test. If you want to test all Hugo Themes then follow the instructions provided [here](https://github.com/gohugoio/hugoThemes#installing-all-themes) +4. Run Hugo and select the theme of your choosing +```bash +hugo server -t YOURTHEME +``` +5. Under `/content/` this repository contains the following: +- A section called `/post/` with sample markdown content +- A headless bundle called `homepage` that you may want to use for single page applications. You can find instructions about headless bundles over [here](https://gohugo.io/content-management/page-bundles/#headless-bundle) +- An `about.md` that is intended to provide the `/about/` page for a theme demo +6. If you intend to build a theme that does not fit in the content structure provided in this repository, then you are still more than welcome to submit it for review at the [Hugo Themes](https://github.com/gohugoio/hugoThemes/issues) respository diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/config.toml b/blog/themes/hugo-theme-chunky-poster/exampleSite/config.toml new file mode 100755 index 0000000..eda5ab2 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/config.toml @@ -0,0 +1,76 @@ +baseURL = "https://example.com" +title = "Hugo Themes" +copyright = "Copyright ยฉ 2008โ€“2019, Steve Francia and the Hugo Authors; all rights reserved." +paginate = 2 +languageCode = "en" +DefaultContentLanguage = "en" +enableInlineShortcodes = true +footnoteReturnLinkContents = "^" +googleAnalytics = "UA-XXXX" +DisqusShortname = "" +theme = "hugo-theme-chunky-poster" + +[menu] + [[menu.main]] + identifier = "home" + name = "Home" + url = "/" + weight = 10 + [[menu.main]] + identifier = "about" + name = "About" + url = "/about/" + weight = 0 + +[taxonomies] +category = "categories" +tag = "tags" +series = "series" +author = "authors" + +[params] + author = "Hugo Authors" + description = "Lorem ipsum dolor sit amet." + homepageImage = "/images/homepage-image.jpg" + share = true + showLanguageSwitcher = false + + # Custom CSS and JS. Relative to /static/css and /static/js respectively. + customCSS = [] + customJS = [] + + [params.social] + rss = true + email = "example@example.com" + facebook = "https://facebook.com" + twitter = "https://twitter.com" + linkedin = "https://linkedin.com" + stack-overflow = "https://stackoverflow.com" + instagram = "https://stackoverflow.com" + github = "https://github.com" + weibo = "https://www.weibo.com" + medium = "https://medium.com" + pinterest = "https://pinterest.com" + reddit = "https://reddit.com" + gitlab = "https://gitlab.com" + mastodon = "https://mastodon.social" + keybase = "https://keybase.io/" + + [params.prismJS] + enable = true + theme = "" + + [params.commento] + enable = true + url = "https://commento.io" + +[markup] + [markup.highlight] + codeFences = false + +[services] + [services.instagram] + disableInlineCSS = true + + [services.twitter] + disableInlineCSS = true diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/configTaxo.toml b/blog/themes/hugo-theme-chunky-poster/exampleSite/configTaxo.toml new file mode 100755 index 0000000..a6acc92 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/configTaxo.toml @@ -0,0 +1,28 @@ +timeout = 30000 +enableInlineShortcodes = true +footnoteReturnLinkContents = "^" + +[taxonomies] +category = "categories" +tag = "tags" +series = "series" + +[privacy] + +[privacy.vimeo] +disabled = false +simple = true + +[privacy.twitter] +disabled = false +enableDNT = true +simple = true +disableInlineCSS = true + +[privacy.instagram] +disabled = false +simple = true + +[privacy.youtube] +disabled = false +privacyEnhanced = true \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/_index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/_index.md new file mode 100755 index 0000000..6abc75e --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/_index.md @@ -0,0 +1,4 @@ ++++ +author = "Hugo Authors" ++++ + diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/about.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/about.md new file mode 100755 index 0000000..ea78b5d --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/about.md @@ -0,0 +1,28 @@ ++++ +title = "About" +description = "Hugo, the worldโ€™s fastest framework for building websites" +date = "2019-02-28" +aliases = ["about-us","about-hugo","contact"] +author = "Hugo Authors" ++++ + +Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows. + +Hugo makes use of a variety of open source projects including: + +* https://github.com/russross/blackfriday +* https://github.com/alecthomas/chroma +* https://github.com/muesli/smartcrop +* https://github.com/spf13/cobra +* https://github.com/spf13/viper + +Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages. + +Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases. + +Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider. + +Learn more and contribute on [GitHub](https://github.com/gohugoio). + + + diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/_index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/_index.md new file mode 100644 index 0000000..e1739fb --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/_index.md @@ -0,0 +1,11 @@ +--- +name: Hugo Authors +images: ["hugo-authors.png"] +twitter: 'hugo_authors' +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam odio justo, interdum eu ex sit amet, rhoncus interdum magna. Nullam at magna tempor, suscipit ipsum ac, egestas tellus. Maecenas non orci ut velit consectetur feugiat. Proin dignissim ullamcorper eros, at commodo orci eleifend at. Donec luctus diam et interdum finibus. Nullam vel elit hendrerit, aliquet massa eget, vestibulum arcu. Etiam fermentum, sem in interdum scelerisque, massa risus rhoncus turpis, quis efficitur nibh dolor vel dolor. Integer aliquet semper urna, nec malesuada libero mollis dictum. Donec sit amet dui vulputate, porta orci eget, ullamcorper mi. Aliquam erat volutpat. Vivamus sodales lobortis molestie. Donec in elementum tortor. Nullam quis ante risus. Pellentesque ac nisl et tellus suscipit auctor. + +Pellentesque accumsan nisi et feugiat sodales. Fusce maximus vehicula est, ut rutrum sem. Suspendisse placerat odio sit amet malesuada finibus. Integer feugiat leo nec volutpat placerat. Fusce cursus libero eu urna congue, nec condimentum libero tincidunt. Etiam et mi ac diam dignissim pretium. Donec eget fermentum leo. Nunc maximus facilisis risus at venenatis. Aenean tincidunt semper nibh, ut semper ipsum finibus in. + +Mauris posuere sem arcu, vel sollicitudin dui finibus eu. Cras ut ante in orci dignissim luctus auctor ac purus. Quisque quis aliquam justo, id maximus lorem. Suspendisse ac commodo quam. Aliquam ultricies eleifend feugiat. Aenean rhoncus suscipit lectus dapibus rutrum. Etiam at ultricies tellus. Aliquam erat volutpat. Morbi a arcu ullamcorper turpis sodales commodo at sit amet orci. Morbi eros odio, posuere quis tortor sit amet, finibus dapibus urna. Curabitur ac ullamcorper leo. Suspendisse vel faucibus nunc. Ut congue vitae nisl at congue. diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/hugo-authors.png b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/hugo-authors.png new file mode 100644 index 0000000..033222d Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/hugo-authors/hugo-authors.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/_index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/_index.md new file mode 100644 index 0000000..a1dd1c7 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/_index.md @@ -0,0 +1,11 @@ +--- +name: Jane Smith +images: ["jane-smith.jpg"] +twitter: 'jane_smith' +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam odio justo, interdum eu ex sit amet, rhoncus interdum magna. Nullam at magna tempor, suscipit ipsum ac, egestas tellus. Maecenas non orci ut velit consectetur feugiat. Proin dignissim ullamcorper eros, at commodo orci eleifend at. Donec luctus diam et interdum finibus. Nullam vel elit hendrerit, aliquet massa eget, vestibulum arcu. Etiam fermentum, sem in interdum scelerisque, massa risus rhoncus turpis, quis efficitur nibh dolor vel dolor. Integer aliquet semper urna, nec malesuada libero mollis dictum. Donec sit amet dui vulputate, porta orci eget, ullamcorper mi. Aliquam erat volutpat. Vivamus sodales lobortis molestie. Donec in elementum tortor. Nullam quis ante risus. Pellentesque ac nisl et tellus suscipit auctor. + +Pellentesque accumsan nisi et feugiat sodales. Fusce maximus vehicula est, ut rutrum sem. Suspendisse placerat odio sit amet malesuada finibus. Integer feugiat leo nec volutpat placerat. Fusce cursus libero eu urna congue, nec condimentum libero tincidunt. Etiam et mi ac diam dignissim pretium. Donec eget fermentum leo. Nunc maximus facilisis risus at venenatis. Aenean tincidunt semper nibh, ut semper ipsum finibus in. + +Mauris posuere sem arcu, vel sollicitudin dui finibus eu. Cras ut ante in orci dignissim luctus auctor ac purus. Quisque quis aliquam justo, id maximus lorem. Suspendisse ac commodo quam. Aliquam ultricies eleifend feugiat. Aenean rhoncus suscipit lectus dapibus rutrum. Etiam at ultricies tellus. Aliquam erat volutpat. Morbi a arcu ullamcorper turpis sodales commodo at sit amet orci. Morbi eros odio, posuere quis tortor sit amet, finibus dapibus urna. Curabitur ac ullamcorper leo. Suspendisse vel faucibus nunc. Ut congue vitae nisl at congue. diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/jane-smith.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/jane-smith.jpg new file mode 100644 index 0000000..746e9df Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/jane-smith/jane-smith.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/_index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/_index.md new file mode 100644 index 0000000..4cdbe63 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/_index.md @@ -0,0 +1,11 @@ +--- +name: John Doe +images: ["john-doe.jpg"] +twitter: 'john_doe' +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam odio justo, interdum eu ex sit amet, rhoncus interdum magna. Nullam at magna tempor, suscipit ipsum ac, egestas tellus. Maecenas non orci ut velit consectetur feugiat. Proin dignissim ullamcorper eros, at commodo orci eleifend at. Donec luctus diam et interdum finibus. Nullam vel elit hendrerit, aliquet massa eget, vestibulum arcu. Etiam fermentum, sem in interdum scelerisque, massa risus rhoncus turpis, quis efficitur nibh dolor vel dolor. Integer aliquet semper urna, nec malesuada libero mollis dictum. Donec sit amet dui vulputate, porta orci eget, ullamcorper mi. Aliquam erat volutpat. Vivamus sodales lobortis molestie. Donec in elementum tortor. Nullam quis ante risus. Pellentesque ac nisl et tellus suscipit auctor. + +Pellentesque accumsan nisi et feugiat sodales. Fusce maximus vehicula est, ut rutrum sem. Suspendisse placerat odio sit amet malesuada finibus. Integer feugiat leo nec volutpat placerat. Fusce cursus libero eu urna congue, nec condimentum libero tincidunt. Etiam et mi ac diam dignissim pretium. Donec eget fermentum leo. Nunc maximus facilisis risus at venenatis. Aenean tincidunt semper nibh, ut semper ipsum finibus in. + +Mauris posuere sem arcu, vel sollicitudin dui finibus eu. Cras ut ante in orci dignissim luctus auctor ac purus. Quisque quis aliquam justo, id maximus lorem. Suspendisse ac commodo quam. Aliquam ultricies eleifend feugiat. Aenean rhoncus suscipit lectus dapibus rutrum. Etiam at ultricies tellus. Aliquam erat volutpat. Morbi a arcu ullamcorper turpis sodales commodo at sit amet orci. Morbi eros odio, posuere quis tortor sit amet, finibus dapibus urna. Curabitur ac ullamcorper leo. Suspendisse vel faucibus nunc. Ut congue vitae nisl at congue. diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/john-doe.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/john-doe.jpg new file mode 100644 index 0000000..dbbf47c Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/authors/john-doe/john-doe.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/about.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/about.md new file mode 100755 index 0000000..c2ba680 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/about.md @@ -0,0 +1,7 @@ +--- +title: 'Our Difference' +button: 'About us' +weight: 2 +--- + +Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. ipsum dolor sit amet, et essent mediocritatem quo, \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/index.md new file mode 100755 index 0000000..01ffa31 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/index.md @@ -0,0 +1,3 @@ +--- +headless : true +--- diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/work.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/work.md new file mode 100755 index 0000000..f2fee73 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/homepage/work.md @@ -0,0 +1,7 @@ +--- +title: 'We Help Business Grow' +button: 'Our Work' +weight: 1 +--- + +Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit. \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/emoji-support.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/emoji-support.jpg new file mode 100644 index 0000000..2c10ac1 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/emoji-support.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/image-gallery.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/image-gallery.jpg new file mode 100644 index 0000000..48a9d6b Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/image-gallery.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/index.md new file mode 100644 index 0000000..ca03031 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/index.md @@ -0,0 +1,3 @@ +--- +headless: true +--- diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/markdown-syntax.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/markdown-syntax.jpg new file mode 100644 index 0000000..2bf4fc8 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/markdown-syntax.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/math-typesetting.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/math-typesetting.jpg new file mode 100644 index 0000000..9e9ed13 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/math-typesetting.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/placeholder-text.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/placeholder-text.jpg new file mode 100644 index 0000000..b9cffd3 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/placeholder-text.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/rich-content.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/rich-content.jpg new file mode 100644 index 0000000..de2d558 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/images/rich-content.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/_index.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/_index.md new file mode 100755 index 0000000..f8374e6 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/_index.md @@ -0,0 +1,6 @@ ++++ +aliases = ["posts","articles","blog","showcase","docs"] +title = "Posts" +author = "Hugo Authors" +tags = ["index"] ++++ \ No newline at end of file diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/emoji-support.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/emoji-support.md new file mode 100755 index 0000000..df13719 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/emoji-support.md @@ -0,0 +1,53 @@ ++++ +authors = [ + "Hugo Authors", + "John Doe", +] +title = "Emoji Support" +date = "2019-03-05" +description = "Guide to emoji usage in Hugo" +tags = [ + "emoji", +] +images = [ + "emoji-support.jpg", +] ++++ + +Emoji can be enabled in a Hugo project in a number of ways. + +The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes). + +To enable emoji globally, set `enableEmoji` to `true` in your siteโ€™s [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g. + + +

๐Ÿ™ˆ :see_no_evil: ๐Ÿ™‰ :hear_no_evil: ๐Ÿ™Š :speak_no_evil:

+
+ +The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes. + +*** + +**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g. + +{{< highlight html >}} +.emoji { +font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols; +} +{{< /highlight >}} + +{{< css.inline >}} + +{{< /css.inline >}} diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/image-gallery.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/image-gallery.md new file mode 100644 index 0000000..f7e6f2b --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/image-gallery.md @@ -0,0 +1,22 @@ ++++ +authors = [ + "Hugo Authors", +] +title = "Image Gallery" +date = "2020-01-02" +description = "Showcase the image gallery feature." +tags = [ + "gallery", + "lightbox", +] +images = [ + "image-gallery.jpg", +] ++++ + +Showcase the image gallery feature using the `Figure` shortcode. Images using the `Figure` shortcode will be rendered through [`ekko-lightbox`](https://ashleydw.github.io/lightbox/). + + +{{< figure src="https://unsplash.it/1200/768.jpg?image=251" >}} +{{< figure src="https://unsplash.it/1200/768.jpg?image=252" >}} +{{< figure src="https://unsplash.it/1200/768.jpg?image=253" >}} diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/markdown-syntax.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/markdown-syntax.md new file mode 100755 index 0000000..9b8abac --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/markdown-syntax.md @@ -0,0 +1,151 @@ ++++ +authors = [ + "Hugo Authors", +] +title = "Markdown Syntax Guide" +date = "2019-03-11" +description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements." +tags = [ + "markdown", + "css", + "html", + "themes", +] +categories = [ + "themes", + "syntax", +] +series = ["Themes Guide"] +aliases = ["migrate-from-jekyl"] +images = [ + "markdown-syntax.jpg", +] ++++ + +This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. + + +## Headings + +The following HTML `

`โ€”`

` elements represent six levels of section headings. `

` is the highest section level while `

` is the lowest. + +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 + +## Paragraph + +Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. + +Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. + +## Blockquotes + +The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. + +#### Blockquote without attribution + +> Tiam, ad mint andaepu dandae nostion secatur sequo quae. +> **Note** that you can use *Markdown syntax* within a blockquote. + +#### Blockquote with attribution + +> Don't communicate by sharing memory, share memory by communicating.

+> โ€” Rob Pike[^1] + + +[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. + +## Tables + +Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box. + + Name | Age +--------|------ + Bob | 27 + Alice | 23 + +#### Inline Markdown within tables + +| Inline    | Markdown    | In    | Table | +| ---------- | --------- | ----------------- | ---------- | +| *italics* | **bold** | ~~strikethrough~~    | `code` | + +## Code Blocks + +#### Code block with backticks + +```html + + + + + Example HTML5 Document + + +

Test

+ + +``` +#### Code block indented with four spaces + + + + + + Example HTML5 Document + + +

Test

+ + + +#### Code block with Hugo's internal highlight shortcode +{{< highlight html >}} + + + + + Example HTML5 Document + + +

Test

+ + +{{< /highlight >}} + +## List Types + +#### Ordered List + +1. First item +2. Second item +3. Third item + +#### Unordered List + +* List item +* Another item +* And another item + +#### Nested list + +* Item +1. First Sub-item +2. Second Sub-item + +## Other Elements โ€” abbr, sub, sup, kbd, mark + +GIF is a bitmap image format. + +H2O + +Xn + Yn = Zn + +Press CTRL+ALT+Delete to end the session. + +Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. + diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/math-typesetting.mmark b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/math-typesetting.mmark new file mode 100755 index 0000000..23ddd92 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/math-typesetting.mmark @@ -0,0 +1,49 @@ +--- +authors: + - "Hugo Authors" +title: Math Typesetting +date: 2019-03-08 +description: A brief guide to setup KaTeX +markup: mmark +math: true +images: + - math-typesetting.jpg +--- + +Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries. + + +In this example we will be using [KaTeX](https://katex.org/) + +- Create a partial under `/layouts/partials/math.html` +- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally. +- Include the partial in your templates like so: + +``` +{{ if or .Params.math .Site.Params.math }} +{{ partial "math.html" . }} +{{ end }} +``` +- To enable KaTex globally set the parameter `math` to `true` in a project's configuration +- To enable KaTex on a per page basis include the parameter `math: true` in content files. + +**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html) +{{< math.inline >}} +{{ if or .Page.Params.math .Site.Params.math }} + + + + +{{ end }} +{{}} + +### Examples + +Inline math: $$ \varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887โ€ฆ $$ + +Block math: + +$$ + \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } +$$ + diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/placeholder-text.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/placeholder-text.md new file mode 100755 index 0000000..8011844 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/placeholder-text.md @@ -0,0 +1,63 @@ ++++ +authors = [ + "Hugo Authors", +] +title = "Placeholder Text" +date = "2019-03-09" +description = "Lorem Ipsum Dolor Si Amet" +tags = [ + "markdown", + "text", +] +images = [ + "placeholder-text.jpg", +] ++++ + +Lorem est tota propiore conpellat pectoribus de +pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice +subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc +caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis +lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum. + +1. Exierant elisi ambit vivere dedere +2. Duce pollice +3. Eris modo +4. Spargitque ferrea quos palude + +Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus +silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria +tractus malis. + +1. Comas hunc haec pietate fetum procerum dixit +2. Post torum vates letum Tiresia +3. Flumen querellas +4. Arcanaque montibus omnes +5. Quidem et + +# Vagus elidunt + + + +[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon) + +## Mane refeci capiebant unda mulcebat + +Victa caducifer, malo vulnere contra +dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere +furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis. + +Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli +Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare +Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert +ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae +vulnus haerentia iuste et exercebat, sui et. + +Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem +Propoetides **parte**. + +{{< css.inline >}} + +{{< /css.inline >}} diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/rich-content.md b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/rich-content.md new file mode 100755 index 0000000..6418548 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/exampleSite/content/post/rich-content.md @@ -0,0 +1,48 @@ ++++ +authors = [ + "Hugo Authors", + "Jane Smith", +] +title = "Rich Content" +date = "2019-03-10" +description = "A brief description of Hugo Shortcodes" +tags = [ + "shortcodes", + "privacy", +] +images = [ + "rich-content.jpg", +] ++++ + +Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. + +--- + +## Instagram Simple Shortcode + +{{< instagram_simple BGvuInzyFAe hidecaption >}} + +
+ +--- + +## YouTube Privacy Enhanced Shortcode + +{{< youtube ZJthWmvUzzc >}} + +
+ +--- + +## Twitter Simple Shortcode + +{{< twitter_simple 1085870671291310081 >}} + +
+ +--- + +## Vimeo Simple Shortcode + +{{< vimeo_simple 48912912 >}} diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/layouts/.gitkeep b/blog/themes/hugo-theme-chunky-poster/exampleSite/layouts/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_128x0_resize_q100_box_2.png b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_128x0_resize_q100_box_2.png new file mode 100644 index 0000000..087de5b Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_128x0_resize_q100_box_2.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_192x0_resize_q100_box_2.png b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_192x0_resize_q100_box_2.png new file mode 100644 index 0000000..f7da938 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_192x0_resize_q100_box_2.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_300x0_resize_box_2.png b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_300x0_resize_box_2.png new file mode 100644 index 0000000..31c16cc Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_300x0_resize_box_2.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_64x0_resize_box_2.png b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_64x0_resize_box_2.png new file mode 100644 index 0000000..6dbe4ab Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/hugo-authors/hugo-authors_hu196091cf616efafabd0feaaf62c18c4a_14862_64x0_resize_box_2.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_128x0_resize_q100_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_128x0_resize_q100_box.jpg new file mode 100644 index 0000000..76e29d3 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_128x0_resize_q100_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_192x0_resize_q100_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_192x0_resize_q100_box.jpg new file mode 100644 index 0000000..2959789 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_192x0_resize_q100_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_300x0_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_300x0_resize_q75_box.jpg new file mode 100644 index 0000000..813d6b5 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_300x0_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_64x0_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_64x0_resize_q75_box.jpg new file mode 100644 index 0000000..f11d269 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/jane-smith/jane-smith_hu62bd326fb0c7d5b63111f2a147a15814_14429_64x0_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_128x0_resize_q100_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_128x0_resize_q100_box.jpg new file mode 100644 index 0000000..9102b71 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_128x0_resize_q100_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_192x0_resize_q100_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_192x0_resize_q100_box.jpg new file mode 100644 index 0000000..1745f2e Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_192x0_resize_q100_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_300x0_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_300x0_resize_q75_box.jpg new file mode 100644 index 0000000..76f1a13 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_300x0_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_64x0_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_64x0_resize_q75_box.jpg new file mode 100644 index 0000000..89d7555 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/authors/john-doe/john-doe_hu43ea88f1db30b9504f3513e0becd4df1_35263_64x0_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..8c1a88f Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..394d645 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/emoji-support_hu73d42148f17890d8172d080c3feed38d_62442_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..3bb1888 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x450_fill_q75_box_smart1.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x450_fill_q75_box_smart1.jpg new file mode 100644 index 0000000..76d4918 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_700x450_fill_q75_box_smart1.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..0e046fc Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/image-gallery_hu093daa566e43ca7f740afb6676c27ca0_77330_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..0f145b6 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..124e77c Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/markdown-syntax_hu9d0b46ff016e885d1678cd94c2d23ea6_42965_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..ee34e22 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..804c77a Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/math-typesetting_hucea3d42358e5d7ff0b82a9361a582edd_33960_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..a89e766 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..4cfc7ef Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/placeholder-text_hu25e306179936507dff060df7e6c70d8d_83483_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_700x350_resize_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_700x350_resize_q75_box.jpg new file mode 100644 index 0000000..90d6b1e Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_700x350_resize_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_900x500_fit_q75_box.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_900x500_fit_q75_box.jpg new file mode 100644 index 0000000..92fff0d Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/resources/_gen/images/images/rich-content_hu65a9f64e6dfd863669c871293c37b28a_59682_900x500_fit_q75_box.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/static/.gitignore b/blog/themes/hugo-theme-chunky-poster/exampleSite/static/.gitignore new file mode 100755 index 0000000..e69de29 diff --git a/blog/themes/hugo-theme-chunky-poster/exampleSite/static/images/homepage-image.jpg b/blog/themes/hugo-theme-chunky-poster/exampleSite/static/images/homepage-image.jpg new file mode 100644 index 0000000..dae85c7 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/exampleSite/static/images/homepage-image.jpg differ diff --git a/blog/themes/hugo-theme-chunky-poster/i18n/en.yaml b/blog/themes/hugo-theme-chunky-poster/i18n/en.yaml new file mode 100644 index 0000000..c6e0bb8 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/i18n/en.yaml @@ -0,0 +1,12 @@ +# Single +wordCount: + one: "{{ .Count }} word" + other: "{{ .Count }} words" + +readingTime: + one: "{{ .Count }} min read" + other: "{{ .Count }} mins read" + +# Author +articles: + other: "Articles" diff --git a/blog/themes/hugo-theme-chunky-poster/i18n/ja.yaml b/blog/themes/hugo-theme-chunky-poster/i18n/ja.yaml new file mode 100644 index 0000000..6ed6bae --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/i18n/ja.yaml @@ -0,0 +1,12 @@ +# Single +wordCount: + one: "{{ .Count }} letter" + other: "{{ .Count }} letters" + +readingTime: + one: "{{ .Count }} min read" + other: "{{ .Count }} mins read" + +# Author +articles: + other: "Articles" diff --git a/blog/themes/hugo-theme-chunky-poster/images/screenshot-responsive.png b/blog/themes/hugo-theme-chunky-poster/images/screenshot-responsive.png new file mode 100644 index 0000000..9032891 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/images/screenshot-responsive.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/images/screenshot.png b/blog/themes/hugo-theme-chunky-poster/images/screenshot.png new file mode 100644 index 0000000..ada3353 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/images/screenshot.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/images/tn.png b/blog/themes/hugo-theme-chunky-poster/images/tn.png new file mode 100644 index 0000000..6c21c01 Binary files /dev/null and b/blog/themes/hugo-theme-chunky-poster/images/tn.png differ diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/404.html b/blog/themes/hugo-theme-chunky-poster/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/_default/baseof.html b/blog/themes/hugo-theme-chunky-poster/layouts/_default/baseof.html new file mode 100644 index 0000000..091995b --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/_default/baseof.html @@ -0,0 +1,16 @@ + + + + {{ partial "head.html" . }} + + + {{ partial "header.html" . }} + + {{ block "main" . }}{{ end }} + + {{ partial "footer.html" . }} + {{ partial "foot.html" . }} + + {{ template "_internal/google_analytics.html" . }} + + diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/_default/card.html b/blog/themes/hugo-theme-chunky-poster/layouts/_default/card.html new file mode 100644 index 0000000..191e15b --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/_default/card.html @@ -0,0 +1,21 @@ +
+ {{ $page := . }} + + {{- with $page.Params.images -}} + {{- $images := . -}} + {{- with $page.Site.GetPage "section" "images" -}} + {{- with .Resources.GetMatch (strings.TrimPrefix "/images/" (index $images 0)) -}} + {{- $image := .Resize "700x350" -}} + {{ $page.Title }} + {{- end -}} + {{- end -}} + {{- end -}} +
+

{{ $page.Title }}

+

{{ $page.Date.Format "January 2, 2006" }}

+
+ {{ $page.Summary | plainify }} +
+
+
+
diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/_default/list.html b/blog/themes/hugo-theme-chunky-poster/layouts/_default/list.html new file mode 100644 index 0000000..2775a69 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/_default/list.html @@ -0,0 +1,25 @@ +{{ define "main" }} +
+ {{- if or .Title .Content -}} +
+
+ {{ with .Title }}

{{ . }}

{{ end }} + + {{- with .Content -}} +
+ {{ . }} +
+ {{- end -}} +
+
+ {{- end -}} + +
+ {{ range .Pages }} +
+ {{ .Render "card" }} +
+ {{ end }} +
+
+{{ end }} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/_default/single.html b/blog/themes/hugo-theme-chunky-poster/layouts/_default/single.html new file mode 100644 index 0000000..8ec5cf6 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/_default/single.html @@ -0,0 +1,19 @@ +{{ define "main" }} +
+
+
+
+
+
+

{{ .Title }}

+ +
+ {{ .Content }} +
+
+
+
+
+
+
+{{ end }} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/authors/list.html b/blog/themes/hugo-theme-chunky-poster/layouts/authors/list.html new file mode 100644 index 0000000..1c7d286 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/authors/list.html @@ -0,0 +1,51 @@ +{{ define "main" }} +
+
+
+
+
+
+ {{- $term := . -}} + {{- if $term.Params.images -}} + {{- with .Resources.GetMatch (index $term.Params.images 0) -}} + {{- $image := .Resize "300x" -}} +

+ {{ $term.Params.name }} +

+ {{- end -}} + {{- end -}} + + {{- .Scratch.Set "name" .Title -}} + {{- if $term.Params.name -}} + {{- .Scratch.Set "name" $term.Params.name -}} + {{- end -}} +

{{ .Scratch.Get "name" }}

+ + {{- with $term.Params.twitter -}} +

+ @{{ .}} +

+ {{- end -}} + +
+ {{ $term.Content }} +
+ +
+

{{ T "articles" }}

+ + {{- with .Data.Pages -}} + + {{ end }} +
+
+
+
+
+
+
+{{ end }} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/index.html b/blog/themes/hugo-theme-chunky-poster/layouts/index.html new file mode 100644 index 0000000..e048e7c --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/index.html @@ -0,0 +1,56 @@ +{{ define "main" }} +
+ +
+
+ {{- with .Site.Params.homepageImage -}} +
+ +
+ {{- end -}} + +

{{ .Site.Title }}

+ {{- with .Site.Params.description -}} +

{{ . | safeHTML }}

+ {{- end -}} +
+
+ + + {{- range first 1 (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) -}} + {{ $page := . }} +
+
+ {{- with $page.Params.images -}} + {{- $images := . -}} + {{- with $page.Site.GetPage "section" "images" -}} + {{- with .Resources.GetMatch (strings.TrimPrefix "/images/" (index $images 0)) -}} + {{- $image := .Fill "700x450" -}} + + {{ $page.Title }} + + {{- end -}} + {{- end -}} + {{- end -}} +
+
+
{{ $page.Date.Format "January 2, 2006" }}
+

{{ $page.Title }}

+ +
+ {{ $page.Summary }} +
+
+
+ {{- end -}} + + +
+ {{ range after 1 (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }} +
+ {{ .Render "card" }} +
+ {{ end }} +
+
+{{ end }} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/authors.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/authors.html new file mode 100644 index 0000000..76c2f4c --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/authors.html @@ -0,0 +1,40 @@ +{{- if .Params.authors -}} + +{{- end -}} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/foot.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/foot.html new file mode 100644 index 0000000..5cdc557 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/foot.html @@ -0,0 +1,21 @@ +{{ with index .Site.Data "chunky-poster" }} + {{ range $vendor := .assets }} + {{ if $vendor.js }} + + {{ end }} + {{ end }} +{{ end }} + +{{ if .Site.Params.prismJS.enable }} + + + +{{ end }} + +{{ range .Site.Params.customJS -}} + +{{ end }} + diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/footer.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/footer.html new file mode 100644 index 0000000..c0db2ae --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/footer.html @@ -0,0 +1,58 @@ + diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/head.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/head.html new file mode 100644 index 0000000..6e3eef1 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/head.html @@ -0,0 +1,55 @@ + + + + + {{ block "title" . }} + {{ with .Params.Title }} {{ . }} | {{ end }} + {{ .Site.Title }} + {{ end }} + + +{{- if .Description -}} + +{{- else if .Site.Params.description -}} + +{{- end -}} + + + + + + + + + + +{{ if .Site.Params.prismJS.enable }} + {{ if .Site.Params.prismJS.theme }} + + {{ else }} + + {{ end }} +{{ end }} + +{{ with index .Site.Data "chunky-poster" }} + {{ range $vendor := .assets }} + {{ if $vendor.css }} + + {{ end }} + {{ end }} +{{ end }} + +{{ range .Site.Params.customCSS -}} + +{{ end }} + + +{{- with .OutputFormats.Get "RSS" }} + + +{{- end -}} + +{{- template "_internal/opengraph.html" . -}} +{{- template "_internal/google_news.html" . -}} +{{- template "_internal/schema.html" . -}} +{{- template "_internal/twitter_cards.html" . -}} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/header.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/header.html new file mode 100644 index 0000000..2543e9c --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/header.html @@ -0,0 +1,21 @@ +{{ $current := . }} + diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/i18nlist.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/i18nlist.html new file mode 100644 index 0000000..486e1f3 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/i18nlist.html @@ -0,0 +1,6 @@ +{{ if .IsTranslated }} + {{ range .Translations }} + + {{ end}} +{{ end }} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/related.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/related.html new file mode 100644 index 0000000..9dbae44 --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/related.html @@ -0,0 +1,10 @@ +{{- $related := .Site.RegularPages.Related . | first 3 -}} +{{- with $related -}} + +{{- end -}} diff --git a/blog/themes/hugo-theme-chunky-poster/layouts/partials/sharer.html b/blog/themes/hugo-theme-chunky-poster/layouts/partials/sharer.html new file mode 100644 index 0000000..f13030b --- /dev/null +++ b/blog/themes/hugo-theme-chunky-poster/layouts/partials/sharer.html @@ -0,0 +1,24 @@ +{{- if and .Site.Params.share (ne .Params.share false) -}} +