├── CHANGELOG.md ├── LICENSE ├── README.md ├── archetypes └── default.md ├── exampleSite ├── .gitignore ├── config.toml ├── content │ └── .gitkeep ├── data │ └── projects │ │ ├── 2014-07-05-project-1.yaml │ │ ├── 2014-07-06-project-2.yaml │ │ ├── 2014-07-07-project-3.yaml │ │ ├── 2014-07-08-project-4.yaml │ │ ├── 2014-07-09-project-5.yaml │ │ └── 2014-07-10-project-6.yaml └── static │ └── .gitkeep ├── images ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── index.html └── partials │ ├── _analytics │ └── piwik.html │ ├── about.html │ ├── clients.html │ ├── contact.html │ ├── footer.html │ ├── head.html │ ├── hero.html │ ├── js.html │ ├── modals.html │ ├── nav.html │ ├── portfolio.html │ ├── services.html │ └── team.html ├── static ├── css │ ├── agency.css │ ├── bootstrap-v3.3.7 │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ └── jquery.form-validator-v2.3.44 │ │ ├── theme-default.css │ │ └── theme-default.min.css ├── favicon.ico ├── font-awesome-v4.7.0 │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── fonts │ └── bootstrap-v3.3.7 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── 404 │ │ └── 404.jpg │ ├── about │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ ├── header-bg.jpg │ ├── logos │ │ ├── aetuts.jpg │ │ ├── creative-market.jpg │ │ ├── designmodo.jpg │ │ ├── envato.jpg │ │ ├── microlancer.jpg │ │ ├── themeforest.jpg │ │ └── wordpress.jpg │ ├── map-image.png │ ├── portfolio │ │ ├── dreams-preview.png │ │ ├── dreams.png │ │ ├── escape-preview.png │ │ ├── escape.png │ │ ├── golden-preview.png │ │ ├── golden.png │ │ ├── roundicons-preview.png │ │ ├── roundicons.png │ │ ├── startup-framework-preview.png │ │ ├── startup-framework.png │ │ ├── treehouse-preview.png │ │ └── treehouse.png │ └── team │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg └── js │ ├── agency.js │ ├── bootstrap-v3.3.7 │ ├── bootstrap.js │ └── bootstrap.min.js │ ├── jquery-v3.3.1 │ ├── jquery.js │ └── jquery.min.js │ └── jquery.form-validator-v2.3.44 │ ├── html5.js │ ├── jquery.form-validator.js │ ├── jquery.form-validator.min.js │ ├── security.js │ └── toggleDisabled.js └── theme.toml /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /exampleSite/.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | themes -------------------------------------------------------------------------------- /exampleSite/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/config.toml -------------------------------------------------------------------------------- /exampleSite/content/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-05-project-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-05-project-1.yaml -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-06-project-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-06-project-2.yaml -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-07-project-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-07-project-3.yaml -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-08-project-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-08-project-4.yaml -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-09-project-5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-09-project-5.yaml -------------------------------------------------------------------------------- /exampleSite/data/projects/2014-07-10-project-6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/exampleSite/data/projects/2014-07-10-project-6.yaml -------------------------------------------------------------------------------- /exampleSite/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/images/tn.png -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/_analytics/piwik.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/_analytics/piwik.html -------------------------------------------------------------------------------- /layouts/partials/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/about.html -------------------------------------------------------------------------------- /layouts/partials/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/clients.html -------------------------------------------------------------------------------- /layouts/partials/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/contact.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/head.html -------------------------------------------------------------------------------- /layouts/partials/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/hero.html -------------------------------------------------------------------------------- /layouts/partials/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/js.html -------------------------------------------------------------------------------- /layouts/partials/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/modals.html -------------------------------------------------------------------------------- /layouts/partials/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/nav.html -------------------------------------------------------------------------------- /layouts/partials/portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/portfolio.html -------------------------------------------------------------------------------- /layouts/partials/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/services.html -------------------------------------------------------------------------------- /layouts/partials/team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/layouts/partials/team.html -------------------------------------------------------------------------------- /static/css/agency.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/css/agency.css -------------------------------------------------------------------------------- /static/css/bootstrap-v3.3.7/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/css/bootstrap-v3.3.7/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap-v3.3.7/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/css/bootstrap-v3.3.7/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/jquery.form-validator-v2.3.44/theme-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/css/jquery.form-validator-v2.3.44/theme-default.css -------------------------------------------------------------------------------- /static/css/jquery.form-validator-v2.3.44/theme-default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/css/jquery.form-validator-v2.3.44/theme-default.min.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/font-awesome-v4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/font-awesome-v4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/font-awesome-v4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/font-awesome-v4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/font-awesome-v4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/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/HEAD/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/HEAD/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/HEAD/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/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/HEAD/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/HEAD/static/fonts/bootstrap-v3.3.7/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/img/404/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/404/404.jpg -------------------------------------------------------------------------------- /static/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/about/1.jpg -------------------------------------------------------------------------------- /static/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/about/2.jpg -------------------------------------------------------------------------------- /static/img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/about/3.jpg -------------------------------------------------------------------------------- /static/img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/about/4.jpg -------------------------------------------------------------------------------- /static/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/header-bg.jpg -------------------------------------------------------------------------------- /static/img/logos/aetuts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/aetuts.jpg -------------------------------------------------------------------------------- /static/img/logos/creative-market.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/creative-market.jpg -------------------------------------------------------------------------------- /static/img/logos/designmodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/designmodo.jpg -------------------------------------------------------------------------------- /static/img/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/envato.jpg -------------------------------------------------------------------------------- /static/img/logos/microlancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/microlancer.jpg -------------------------------------------------------------------------------- /static/img/logos/themeforest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/themeforest.jpg -------------------------------------------------------------------------------- /static/img/logos/wordpress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/logos/wordpress.jpg -------------------------------------------------------------------------------- /static/img/map-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/map-image.png -------------------------------------------------------------------------------- /static/img/portfolio/dreams-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/dreams-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/dreams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/dreams.png -------------------------------------------------------------------------------- /static/img/portfolio/escape-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/escape-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/escape.png -------------------------------------------------------------------------------- /static/img/portfolio/golden-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/golden-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/golden.png -------------------------------------------------------------------------------- /static/img/portfolio/roundicons-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/roundicons-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/roundicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/roundicons.png -------------------------------------------------------------------------------- /static/img/portfolio/startup-framework-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/startup-framework-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/startup-framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/startup-framework.png -------------------------------------------------------------------------------- /static/img/portfolio/treehouse-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/treehouse-preview.png -------------------------------------------------------------------------------- /static/img/portfolio/treehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/portfolio/treehouse.png -------------------------------------------------------------------------------- /static/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/team/1.jpg -------------------------------------------------------------------------------- /static/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/team/2.jpg -------------------------------------------------------------------------------- /static/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/img/team/3.jpg -------------------------------------------------------------------------------- /static/js/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/agency.js -------------------------------------------------------------------------------- /static/js/bootstrap-v3.3.7/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/bootstrap-v3.3.7/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap-v3.3.7/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/bootstrap-v3.3.7/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-v3.3.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery-v3.3.1/jquery.js -------------------------------------------------------------------------------- /static/js/jquery-v3.3.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery-v3.3.1/jquery.min.js -------------------------------------------------------------------------------- /static/js/jquery.form-validator-v2.3.44/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery.form-validator-v2.3.44/html5.js -------------------------------------------------------------------------------- /static/js/jquery.form-validator-v2.3.44/jquery.form-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery.form-validator-v2.3.44/jquery.form-validator.js -------------------------------------------------------------------------------- /static/js/jquery.form-validator-v2.3.44/jquery.form-validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery.form-validator-v2.3.44/jquery.form-validator.min.js -------------------------------------------------------------------------------- /static/js/jquery.form-validator-v2.3.44/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery.form-validator-v2.3.44/security.js -------------------------------------------------------------------------------- /static/js/jquery.form-validator-v2.3.44/toggleDisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/static/js/jquery.form-validator-v2.3.44/toggleDisabled.js -------------------------------------------------------------------------------- /theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalcraftsman/hugo-agency-theme/HEAD/theme.toml --------------------------------------------------------------------------------