├── exampleSite
├── content
│ └── .gitkeep
├── static
│ └── .gitkeep
├── .gitignore
├── data
│ └── projects
│ │ ├── 2014-07-07-project-3.yaml
│ │ ├── 2014-07-10-project-6.yaml
│ │ ├── 2014-07-09-project-5.yaml
│ │ ├── 2014-07-08-project-4.yaml
│ │ ├── 2014-07-06-project-2.yaml
│ │ └── 2014-07-05-project-1.yaml
└── config.toml
├── archetypes
└── default.md
├── images
├── tn.png
└── screenshot.png
├── static
├── favicon.ico
├── img
│ ├── 404
│ │ └── 404.jpg
│ ├── about
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ └── 4.jpg
│ ├── team
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ └── 3.jpg
│ ├── header-bg.jpg
│ ├── map-image.png
│ ├── logos
│ │ ├── aetuts.jpg
│ │ ├── envato.jpg
│ │ ├── wordpress.jpg
│ │ ├── designmodo.jpg
│ │ ├── microlancer.jpg
│ │ ├── themeforest.jpg
│ │ └── creative-market.jpg
│ └── portfolio
│ │ ├── dreams.png
│ │ ├── escape.png
│ │ ├── golden.png
│ │ ├── roundicons.png
│ │ ├── treehouse.png
│ │ ├── dreams-preview.png
│ │ ├── escape-preview.png
│ │ ├── golden-preview.png
│ │ ├── roundicons-preview.png
│ │ ├── startup-framework.png
│ │ ├── treehouse-preview.png
│ │ └── startup-framework-preview.png
├── font-awesome-v4.7.0
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ └── css
│ │ └── font-awesome.min.css
├── fonts
│ └── bootstrap-v3.3.7
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
├── js
│ ├── jquery.form-validator-v2.3.44
│ │ ├── toggleDisabled.js
│ │ ├── html5.js
│ │ ├── security.js
│ │ └── jquery.form-validator.min.js
│ ├── agency.js
│ └── bootstrap-v3.3.7
│ │ └── bootstrap.min.js
└── css
│ └── agency.css
├── layouts
├── partials
│ ├── hero.html
│ ├── footer.html
│ ├── js.html
│ ├── clients.html
│ ├── _analytics
│ │ └── piwik.html
│ ├── services.html
│ ├── portfolio.html
│ ├── modals.html
│ ├── about.html
│ ├── team.html
│ ├── head.html
│ ├── nav.html
│ └── contact.html
├── 404.html
└── index.html
├── theme.toml
├── CHANGELOG.md
├── README.md
└── LICENSE
/exampleSite/content/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exampleSite/static/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/exampleSite/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 | themes
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | tags = []
3 | categories = []
4 | +++
5 |
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/images/tn.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/favicon.ico
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/images/screenshot.png
--------------------------------------------------------------------------------
/static/img/404/404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/404/404.jpg
--------------------------------------------------------------------------------
/static/img/about/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/about/1.jpg
--------------------------------------------------------------------------------
/static/img/about/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/about/2.jpg
--------------------------------------------------------------------------------
/static/img/about/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/about/3.jpg
--------------------------------------------------------------------------------
/static/img/about/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/about/4.jpg
--------------------------------------------------------------------------------
/static/img/team/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/team/1.jpg
--------------------------------------------------------------------------------
/static/img/team/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/team/2.jpg
--------------------------------------------------------------------------------
/static/img/team/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/team/3.jpg
--------------------------------------------------------------------------------
/static/img/header-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/header-bg.jpg
--------------------------------------------------------------------------------
/static/img/map-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/map-image.png
--------------------------------------------------------------------------------
/static/img/logos/aetuts.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/aetuts.jpg
--------------------------------------------------------------------------------
/static/img/logos/envato.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/envato.jpg
--------------------------------------------------------------------------------
/static/img/logos/wordpress.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/wordpress.jpg
--------------------------------------------------------------------------------
/static/img/logos/designmodo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/designmodo.jpg
--------------------------------------------------------------------------------
/static/img/logos/microlancer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/microlancer.jpg
--------------------------------------------------------------------------------
/static/img/logos/themeforest.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/themeforest.jpg
--------------------------------------------------------------------------------
/static/img/portfolio/dreams.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/dreams.png
--------------------------------------------------------------------------------
/static/img/portfolio/escape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/escape.png
--------------------------------------------------------------------------------
/static/img/portfolio/golden.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/golden.png
--------------------------------------------------------------------------------
/static/img/portfolio/roundicons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/roundicons.png
--------------------------------------------------------------------------------
/static/img/portfolio/treehouse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/treehouse.png
--------------------------------------------------------------------------------
/static/img/logos/creative-market.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/logos/creative-market.jpg
--------------------------------------------------------------------------------
/static/img/portfolio/dreams-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/dreams-preview.png
--------------------------------------------------------------------------------
/static/img/portfolio/escape-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/escape-preview.png
--------------------------------------------------------------------------------
/static/img/portfolio/golden-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/golden-preview.png
--------------------------------------------------------------------------------
/static/img/portfolio/roundicons-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/roundicons-preview.png
--------------------------------------------------------------------------------
/static/img/portfolio/startup-framework.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/startup-framework.png
--------------------------------------------------------------------------------
/static/img/portfolio/treehouse-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/treehouse-preview.png
--------------------------------------------------------------------------------
/static/font-awesome-v4.7.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/font-awesome-v4.7.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/static/img/portfolio/startup-framework-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/img/portfolio/startup-framework-preview.png
--------------------------------------------------------------------------------
/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/master/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/layouts/partials/hero.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 | {{ .description | markdownify }}
You can download the PSD template in this portfolio sample item at [FreebiesXpress.com](freebiesxpress.com/gallery/treehouse-free-psd-web-template/).
--------------------------------------------------------------------------------
/theme.toml:
--------------------------------------------------------------------------------
1 | name = "Agency"
2 | license = "Apache License 2.0"
3 | licenselink = "//github.com/digitalcraftsman/hugo-agency-theme/blob/master/LICENSE"
4 | description = "A one page portfolio for companies and freelancers."
5 | homepage = "//github.com/digitalcraftsman/hugo-agency-theme"
6 | tags = ["portfolio", "company", "contact form", "timeline", "google analytics", "piwik"]
7 | min_version = 0.15
8 |
9 | [author]
10 | name = "digitalcraftsman"
11 | homepage = "//github.com/digitalcraftsman"
12 |
13 | # If porting an existing theme
14 | [original]
15 | name = "David Miller"
16 | homepage = "//www.ironsummitmedia.com/"
17 | repo = "//github.com/IronSummitMedia/startbootstrap-agency"
18 |
--------------------------------------------------------------------------------
/exampleSite/data/projects/2014-07-10-project-6.yaml:
--------------------------------------------------------------------------------
1 | modalID: 6
2 | title: Dreams
3 | subtitle: Lorem ipsum dolor sit amet consectetur.
4 | date: 2014-07-10
5 | img: dreams.png
6 | preview: dreams-preview.png
7 | client: Start Bootstrap
8 | clientLink: "#"
9 | category: Website Design
10 | description: Dreams is a free PSD web template built by [Mathavan Jaya](//www.behance.net/MathavanJaya). Dreams is a modern one page web template designed for almost any purpose. It’s a beautiful template that’s designed with the Bootstrap framework in mind.
You can download the PSD template in this portfolio sample item at [FreebiesXpress.com](//freebiesxpress.com/gallery/dreams-free-one-page-web-template/).
--------------------------------------------------------------------------------
/exampleSite/data/projects/2014-07-09-project-5.yaml:
--------------------------------------------------------------------------------
1 | modalID: 4
2 | title: Escape
3 | subtitle: Lorem ipsum dolor sit amet consectetur.
4 | date: 2014-07-08
5 | img: escape.png
6 | preview: escape-preview.png
7 | client: Start Bootstrap
8 | clientLink: "#"
9 | category: Website Design
10 | description: Escape is a free PSD web template built by [Mathavan Jaya](//www.behance.net/MathavanJaya). Escape is a one page web template that was designed with agencies in mind. This template is ideal for those looking for a simple one page solution to describe your business and offer your services.
You can download the PSD template in this portfolio sample item at [FreebiesXpress.com](//freebiesxpress.com/gallery/escape-one-page-psd-web-template/).
--------------------------------------------------------------------------------
/exampleSite/data/projects/2014-07-08-project-4.yaml:
--------------------------------------------------------------------------------
1 | modalID: 5
2 | title: Golden
3 | subtitle: Lorem ipsum dolor sit amet consectetur.
4 | date: 2014-07-09
5 | img: golden.png
6 | preview: golden-preview.png
7 | client: Start Bootstrap
8 | clientLink: "#"
9 | category: Website Design
10 | description: Start Bootstrap's Agency theme is based on Golden, a free PSD website template built by [Mathavan Jaya](//www.behance.net/MathavanJaya). Golden is a modern and clean one page web template that was made exclusively for Best PSD Freebies. This template has a great portfolio, timeline, and meet your team sections that can be easily modified to fit your needs.
You can download the PSD template in this portfolio sample item at [FreebiesXpress.com](//freebiesxpress.com/gallery/golden-free-one-page-web-template/).
--------------------------------------------------------------------------------
/exampleSite/data/projects/2014-07-06-project-2.yaml:
--------------------------------------------------------------------------------
1 | modalID: 2
2 | title: Startup Framework
3 | subtitle: Lorem ipsum dolor sit amet consectetur.
4 | date: 2014-07-06
5 | img: startup-framework.png
6 | preview: startup-framework-preview.png
7 | client: Start Bootstrap
8 | clientLink: "#"
9 | category: Website Design
10 | description: "[Startup Framework](//designmodo.com/startup/?u=787) is a website builder for professionals. Startup Framework contains components and complex blocks (PSD+HTML Bootstrap themes and templates) which can easily be integrated into almost any design. All of these components are made in the same style, and can easily be integrated into projects, allowing you to create hundreds of solutions for your future projects.
You can preview Startup Framework [here](//designmodo.com/startup/?u=787)."
--------------------------------------------------------------------------------
/exampleSite/data/projects/2014-07-05-project-1.yaml:
--------------------------------------------------------------------------------
1 | modalID: 1
2 | title: Round Icons
3 | subtitle: Lorem ipsum dolor sit amet consectetur.
4 | date: 2014-07-05
5 | img: roundicons.png
6 | preview: roundicons-preview.png
7 | client: Start Bootstrap
8 | clientLink: "#"
9 | category: Graphic Design
10 | description: Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!
**Want these icons in this portfolio item sample?** You can download 60 of them for free, courtesy of [RoundIcons.com](//getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc), or you can purchase the 1500 icon set [here](//getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc).
--------------------------------------------------------------------------------
/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 |
29 |
--------------------------------------------------------------------------------
/layouts/partials/js.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 |
3 |
4 | {{ "" | safeHTML }}
5 |
6 |
7 | {{ "" | safeHTML }}
8 |
9 |
10 | {{ "" | safeHTML }}
11 |
12 |
13 | {{ template "_internal/google_analytics_async.html" . }}
14 |
15 | {{ if .Site.Params.analytics.piwik }}
16 | {{ partial "_analytics/piwik.html" . }}
17 | {{ end }}
18 |
19 | {{ if .Site.Params.contact.captcha }}
20 |
21 | {{ end }}
22 |
23 | {{ range .Site.Params.custom_js }}
24 |
25 | {{ end }}
26 |
--------------------------------------------------------------------------------
/layouts/partials/clients.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 |
27 |
--------------------------------------------------------------------------------
/layouts/partials/_analytics/piwik.html:
--------------------------------------------------------------------------------
1 |
2 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/layouts/partials/services.html:
--------------------------------------------------------------------------------
1 | {{ "" | safeHTML }}
2 | {{ with .Site.Params.services.title }}{{ . }}{{ end }}
7 | {{ with .Site.Params.services.subtitle }}{{ . | markdownify }}{{ end }}
8 | {{ if .url }}{{ .title | markdownify }}{{ else }}{{ .title | markdownify }}{{ end }}
19 |
{{ .category | markdownify }}
26 |{{ .description | markdownify }}
27 |{{ . | markdownify }}
45 | {{ end }} 46 | 47 |{{ with .Site.Params.team.description }}{{ . | markdownify }}{{ end }}
54 |