├── exampleSite
├── static
│ └── .gitkeep
├── .gitignore
├── content
│ └── work
│ │ ├── proj-2.md
│ │ ├── proj-5.md
│ │ ├── proj-3.md
│ │ ├── proj-6.md
│ │ ├── proj-8.md
│ │ ├── proj-4.md
│ │ ├── proj-7.md
│ │ └── proj-1.md
├── data
│ ├── work.toml
│ └── clients.toml
└── config.toml
├── layouts
├── _default
│ └── single.html
├── partials
│ ├── icons
│ │ ├── icon-video.html
│ │ ├── icon-back.html
│ │ ├── icon-mouse.html
│ │ ├── icon-browser.html
│ │ ├── icon-next.html
│ │ ├── icon-pencil.html
│ │ ├── icon-prev.html
│ │ └── icon-quote-mark.html
│ ├── contact.html
│ ├── head.html
│ ├── header.html
│ ├── footer.html
│ ├── form.html
│ ├── about.html
│ ├── work.html
│ └── clients.html
└── index.html
├── images
├── tn.png
└── screenshot.png
├── static
├── img
│ ├── avatar.jpg
│ ├── hero-bg.jpg
│ ├── back-btn.png
│ ├── clients
│ │ ├── logo1.png
│ │ ├── logo2.png
│ │ ├── logo3.png
│ │ ├── logo4.png
│ │ ├── face-aaroni.jpg
│ │ ├── face-atariboy.jpg
│ │ ├── face-teleject.jpg
│ │ └── face-jackiesaik.jpg
│ ├── work
│ │ ├── proj-1
│ │ │ ├── img1.jpg
│ │ │ ├── img2.jpg
│ │ │ ├── img3.jpg
│ │ │ ├── img4.jpg
│ │ │ ├── img5.jpg
│ │ │ └── thumb.jpg
│ │ ├── proj-2
│ │ │ ├── thumb.jpg
│ │ │ └── CityIn-AntonSkvortsov.jpg
│ │ ├── proj-3
│ │ │ ├── Thumbs.db
│ │ │ ├── thumb.jpg
│ │ │ └── CrispyIcons-PetrasNargela.jpg
│ │ ├── proj-4
│ │ │ ├── thumb.jpg
│ │ │ └── flatmobile-AyoubElred.jpg
│ │ ├── proj-5
│ │ │ ├── thumb.jpg
│ │ │ └── freshitup-JieyuXiong.jpg
│ │ ├── proj-6
│ │ │ ├── thumb.jpg
│ │ │ └── TimeLinePage-SergeyValiukh.jpg
│ │ ├── proj-7
│ │ │ ├── img0.jpg
│ │ │ ├── img1.jpg
│ │ │ ├── img2.jpg
│ │ │ ├── img3.jpg
│ │ │ ├── img4.jpg
│ │ │ └── thumb.jpg
│ │ └── proj-8
│ │ │ ├── thumb.jpg
│ │ │ └── stripes-co-NickZoutendijk.jpg
│ └── logo.svg
├── js
│ └── functions.js
└── css
│ └── all.css
├── .editorconfig
├── theme.toml
├── CHANGELOG.md
├── LICENSE
└── README.md
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exampleSite/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | themes
--------------------------------------------------------------------------------
/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 | {{ .Content }}
2 |
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-2.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-5.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-3.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-6.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-8.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/images/tn.png
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-4.md:
--------------------------------------------------------------------------------
1 | 
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/images/screenshot.png
--------------------------------------------------------------------------------
/static/img/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/avatar.jpg
--------------------------------------------------------------------------------
/static/img/hero-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/hero-bg.jpg
--------------------------------------------------------------------------------
/static/img/back-btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/back-btn.png
--------------------------------------------------------------------------------
/static/img/clients/logo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/logo1.png
--------------------------------------------------------------------------------
/static/img/clients/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/logo2.png
--------------------------------------------------------------------------------
/static/img/clients/logo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/logo3.png
--------------------------------------------------------------------------------
/static/img/clients/logo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/logo4.png
--------------------------------------------------------------------------------
/static/img/work/proj-1/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/img1.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-1/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/img2.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-1/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/img3.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-1/img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/img4.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-1/img5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/img5.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-1/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-1/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-2/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-2/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-3/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-3/Thumbs.db
--------------------------------------------------------------------------------
/static/img/work/proj-3/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-3/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-4/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-4/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-5/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-5/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-6/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-6/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/img0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/img0.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/img1.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/img2.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/img3.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/img4.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-7/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-7/thumb.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-8/thumb.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-8/thumb.jpg
--------------------------------------------------------------------------------
/static/img/clients/face-aaroni.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/face-aaroni.jpg
--------------------------------------------------------------------------------
/static/img/clients/face-atariboy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/face-atariboy.jpg
--------------------------------------------------------------------------------
/static/img/clients/face-teleject.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/face-teleject.jpg
--------------------------------------------------------------------------------
/static/img/clients/face-jackiesaik.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/clients/face-jackiesaik.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-5/freshitup-JieyuXiong.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-5/freshitup-JieyuXiong.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-2/CityIn-AntonSkvortsov.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-2/CityIn-AntonSkvortsov.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-4/flatmobile-AyoubElred.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-4/flatmobile-AyoubElred.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-3/CrispyIcons-PetrasNargela.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-3/CrispyIcons-PetrasNargela.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-8/stripes-co-NickZoutendijk.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-8/stripes-co-NickZoutendijk.jpg
--------------------------------------------------------------------------------
/static/img/work/proj-6/TimeLinePage-SergeyValiukh.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-artists-theme/master/static/img/work/proj-6/TimeLinePage-SergeyValiukh.jpg
--------------------------------------------------------------------------------
/exampleSite/content/work/proj-7.md:
--------------------------------------------------------------------------------
1 | 
2 | 
3 | 
4 | 
5 | 
--------------------------------------------------------------------------------
/static/img/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/partials/icons/icon-video.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # editorconfig.org
2 |
3 | root = true
4 |
5 | [*]
6 | charset = utf-8
7 | indent_size = 2
8 | indent_style = space
9 | end_of_line = lf
10 | insert_final_newline = true
11 | trim_trailing_whitespace = true
12 |
13 | [*.md]
14 | trim_trailing_whitespace = false
15 |
16 | [*.{html,css,js,yaml,toml,json}]
17 | indent_size = 4
--------------------------------------------------------------------------------
/layouts/partials/icons/icon-back.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/layouts/partials/contact.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 | {{ . }}
{{ end }}
4 |
9 |
10 | {{ .Site.Params.email }}
11 |
{{ . }}
{{ end }} 11 |{{ . | markdownify }}
24 |