├── exampleSite ├── layouts │ └── .gitkeep ├── static │ └── .gitkeep ├── content │ ├── contact.ja.md │ ├── contact.md │ ├── projects.ja.md │ ├── projects.md │ ├── posts │ │ ├── FeaturesOfCoderPortfolio.ja.md │ │ ├── FeaturesOfCoderPortfolio.md │ │ ├── theme-demo.ja.md │ │ ├── theme-demo.md │ │ ├── hugoisforlovers.md │ │ ├── migrate-from-jekyll.md │ │ ├── goisforlovers.md │ │ └── creating-a-new-theme.md │ ├── about.ja.md │ └── about.md └── config.toml ├── .gitignore ├── images ├── tn.png ├── avatar.jpg ├── screenshot.png └── logos │ ├── favicon.png │ ├── logomark.png │ ├── logotype-a.png │ ├── logotype-b.png │ ├── logomark.svg │ ├── favicon.svg │ ├── logotype-a.svg │ └── logotype-b.svg ├── layouts ├── 404.html ├── index.html ├── shortcodes │ ├── private.html │ └── portfolio.html ├── partials │ ├── page.html │ ├── 404.html │ ├── list.html │ ├── home.html │ ├── post.html │ ├── pagination.html │ ├── header.html │ └── footer.html ├── _default │ ├── list.html │ ├── single.html │ └── baseof.html └── posts │ └── single.html ├── static ├── images │ ├── tn.png │ ├── avatar.jpg │ ├── favicon-16x16.png │ └── favicon-32x32.png ├── less │ ├── colors.less │ ├── style-rtl.less │ ├── normalize.less │ └── style.less └── css │ ├── style-rtl.min.css │ ├── normalize.min.css │ └── style.min.css ├── archetypes ├── default.md └── posts.md ├── .editorconfig ├── theme.toml ├── LICENSE.md ├── Makefile └── README.md /exampleSite/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/themes/ 2 | demo/ 3 | -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "content" }} 2 | {{ partial "404.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "content" }} 2 | {{ partial "home.html" . }} 3 | {{ end }} 4 | -------------------------------------------------------------------------------- /images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/avatar.jpg -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /static/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/static/images/tn.png -------------------------------------------------------------------------------- /images/logos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/logos/favicon.png -------------------------------------------------------------------------------- /static/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/static/images/avatar.jpg -------------------------------------------------------------------------------- /images/logos/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/logos/logomark.png -------------------------------------------------------------------------------- /images/logos/logotype-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/logos/logotype-a.png -------------------------------------------------------------------------------- /images/logos/logotype-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/images/logos/logotype-b.png -------------------------------------------------------------------------------- /static/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/static/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naro143/hugo-coder-portfolio/HEAD/static/images/favicon-32x32.png -------------------------------------------------------------------------------- /static/less/colors.less: -------------------------------------------------------------------------------- 1 | @bg-color: #fefefe; 2 | @fg-color: #323232; 3 | @darker-bg-color: #dcdcdc; 4 | @darker-fg-color: #000; 5 | @link-color: #3366CC; 6 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | draft = true 3 | date = {{ .Date }} 4 | title = "" 5 | slug = "" 6 | thumbnail = "{{ .Site.Params.thumbnail }}" 7 | description = "" 8 | +++ 9 | -------------------------------------------------------------------------------- /layouts/shortcodes/private.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 |
121 | {{ .Get "caption" }} 122 | {{ with .Get "attrlink"}} {{ end }} 123 | {{ .Get "attr" }} 124 | {{ if .Get "attrlink"}} {{ end }} 125 |
{{ end }} 126 |