├── layouts ├── partials │ ├── footer.html │ ├── header.html │ ├── mobile_nav_toggle.html │ ├── attribution.html │ ├── scripts.html │ ├── sidebar.html │ ├── head.html │ ├── portfolio.html │ ├── social_buttons_in_contact.html │ └── social_buttons_in_sidebar.html ├── _default │ ├── list.html │ ├── single.html │ └── baseof.html ├── index.html ├── about │ └── list.html ├── 404.html ├── _analytics │ └── matomo.html └── contact │ └── list.html ├── archetypes ├── default.md └── portfolio.md ├── static ├── css │ ├── custom.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── owl.carousel.css │ ├── owl.theme.css │ ├── helper.css │ ├── owl.transitions.css │ └── font-awesome.min.css ├── fonts │ └── glyphicons-halflings-regular.ttf └── js │ ├── jquery.scrollTo.min.js │ ├── jquery.cookie.js │ ├── imagesloaded.pkgd.min.js │ ├── front.js │ ├── owl.carousel.min.js │ ├── ekko-lightbox.js │ ├── masonry.pkgd.min.js │ └── bootstrap.min.js ├── .gitignore ├── images ├── tn.png └── screenshot.png ├── exampleSite ├── static │ └── img │ │ ├── about.jpg │ │ ├── favicon.png │ │ └── portfolio │ │ ├── trifold.jpg │ │ ├── a4-paper.jpg │ │ ├── ipad-air-2.jpg │ │ ├── business-card.jpg │ │ ├── envelope-brand.jpg │ │ ├── gravity-paper.jpg │ │ ├── label-clothes.jpg │ │ ├── business-card-26.jpg │ │ └── paper-presentation.jpg ├── content │ ├── contact │ │ └── _index.md │ ├── about │ │ └── _index.md │ └── portfolio │ │ ├── work6.md │ │ ├── work8.md │ │ ├── work3.md │ │ ├── work7.md │ │ ├── work5.md │ │ ├── work1.md │ │ ├── work2.md │ │ ├── work4.md │ │ ├── work10.md │ │ ├── work9.md │ │ └── work11.md └── config.toml ├── .travis.yml ├── theme.toml ├── LICENSE └── README.md /layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | +++ 3 | -------------------------------------------------------------------------------- /static/css/custom.css: -------------------------------------------------------------------------------- 1 | /* your styles go here */ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | themes/ 3 | public/ 4 | .idea/* -------------------------------------------------------------------------------- /archetypes/portfolio.md: -------------------------------------------------------------------------------- 1 | +++ 2 | draft = true 3 | image = "" 4 | showonlyimage = false 5 | +++ 6 | -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "portfolio.html" . }} 3 | {{ end }} -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /exampleSite/static/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/about.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/favicon.png -------------------------------------------------------------------------------- /static/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/trifold.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/trifold.jpg -------------------------------------------------------------------------------- /static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/a4-paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/a4-paper.jpg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/ipad-air-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/ipad-air-2.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/business-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/business-card.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/envelope-brand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/envelope-brand.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/gravity-paper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/gravity-paper.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/label-clothes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/label-clothes.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/business-card-26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/business-card-26.jpg -------------------------------------------------------------------------------- /exampleSite/static/img/portfolio/paper-presentation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishaningithub/hugo-creative-portfolio-theme/HEAD/exampleSite/static/img/portfolio/paper-presentation.jpg -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 |
2 | {{ range .Site.Params.navlinks }} 3 | {{ if .home }} 4 | 5 | {{ end }} 6 | {{ end }} 7 | -------------------------------------------------------------------------------- /layouts/partials/mobile_nav_toggle.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /layouts/partials/attribution.html: -------------------------------------------------------------------------------- 1 | Template by Bootstrapious.com 2 | 3 | & ported to Hugo by Kishan B 4 | -------------------------------------------------------------------------------- /layouts/about/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |25 | {{ if .Description }} 26 | {{ .Description }} 27 | {{ else }} 28 | {{ .Summary }} 29 | {{ end }} 30 |
31 |