├── .github └── workflows │ └── jekyll-ghpages.yml ├── .gitignore ├── .liquidrc ├── .prettierignore ├── .prettierrc ├── .stylelintrc.json ├── .vscode ├── extensions.json └── settings.json ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _data ├── authors.yml ├── menu.yml └── social.json ├── _includes ├── author-large.html ├── author.html ├── category-badge.html ├── footer.html ├── google-analytics.html ├── header.html ├── heading.html ├── logo.html ├── meta.html ├── mobile-menu.html ├── paginator.html ├── summary-category.html └── summary.html ├── _layouts ├── basic.html ├── categories.html ├── category.html ├── default.html ├── home.html └── post.html ├── about.md ├── assets ├── css │ ├── custom.css │ ├── style.css │ └── syntax │ │ └── monokai.css ├── images │ ├── author │ │ ├── mike-vance.jpg │ │ └── sage-kirk.jpg │ ├── logo │ │ ├── logo-mobile.svg │ │ └── logo.svg │ └── unsplash-CTivHyiTbFw-640x360.jpeg └── js │ └── hamburger.js ├── blog └── index.html ├── categories.md ├── categories ├── branding.md ├── development.md ├── hosting.md ├── javascript.md └── web-design.md ├── collections └── _posts │ ├── 2018-12-20-designing-your-brand.md │ ├── 2018-12-20-optimizing-your-website.md │ ├── 2018-12-29-hosting-your-static-site.md │ ├── 2018-12-29-styling-css.md │ └── 2018-12-29-writing-with-markdown.md ├── favicon.png ├── index.md ├── netlify.toml ├── package.json ├── postcss.config.js └── tailwind.config.js /.github/workflows/jekyll-ghpages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.github/workflows/jekyll-ghpages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.liquidrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.liquidrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_data/authors.yml -------------------------------------------------------------------------------- /_data/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_data/menu.yml -------------------------------------------------------------------------------- /_data/social.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_data/social.json -------------------------------------------------------------------------------- /_includes/author-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/author-large.html -------------------------------------------------------------------------------- /_includes/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/author.html -------------------------------------------------------------------------------- /_includes/category-badge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/category-badge.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/google-analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/google-analytics.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/heading.html -------------------------------------------------------------------------------- /_includes/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/logo.html -------------------------------------------------------------------------------- /_includes/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/meta.html -------------------------------------------------------------------------------- /_includes/mobile-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/mobile-menu.html -------------------------------------------------------------------------------- /_includes/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/paginator.html -------------------------------------------------------------------------------- /_includes/summary-category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/summary-category.html -------------------------------------------------------------------------------- /_includes/summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_includes/summary.html -------------------------------------------------------------------------------- /_layouts/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/basic.html -------------------------------------------------------------------------------- /_layouts/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/categories.html -------------------------------------------------------------------------------- /_layouts/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/category.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/about.md -------------------------------------------------------------------------------- /assets/css/custom.css: -------------------------------------------------------------------------------- 1 | body {} -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/css/syntax/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/css/syntax/monokai.css -------------------------------------------------------------------------------- /assets/images/author/mike-vance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/images/author/mike-vance.jpg -------------------------------------------------------------------------------- /assets/images/author/sage-kirk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/images/author/sage-kirk.jpg -------------------------------------------------------------------------------- /assets/images/logo/logo-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/images/logo/logo-mobile.svg -------------------------------------------------------------------------------- /assets/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/images/logo/logo.svg -------------------------------------------------------------------------------- /assets/images/unsplash-CTivHyiTbFw-640x360.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/images/unsplash-CTivHyiTbFw-640x360.jpeg -------------------------------------------------------------------------------- /assets/js/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/assets/js/hamburger.js -------------------------------------------------------------------------------- /blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/blog/index.html -------------------------------------------------------------------------------- /categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/categories.md -------------------------------------------------------------------------------- /categories/branding.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: Branding 4 | --- 5 | -------------------------------------------------------------------------------- /categories/development.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: Development 4 | --- 5 | -------------------------------------------------------------------------------- /categories/hosting.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: Hosting 4 | --- 5 | -------------------------------------------------------------------------------- /categories/javascript.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: Javascript 4 | --- 5 | -------------------------------------------------------------------------------- /categories/web-design.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: category 3 | title: Web Design 4 | --- 5 | -------------------------------------------------------------------------------- /collections/_posts/2018-12-20-designing-your-brand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/collections/_posts/2018-12-20-designing-your-brand.md -------------------------------------------------------------------------------- /collections/_posts/2018-12-20-optimizing-your-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/collections/_posts/2018-12-20-optimizing-your-website.md -------------------------------------------------------------------------------- /collections/_posts/2018-12-29-hosting-your-static-site.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/collections/_posts/2018-12-29-hosting-your-static-site.md -------------------------------------------------------------------------------- /collections/_posts/2018-12-29-styling-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/collections/_posts/2018-12-29-styling-css.md -------------------------------------------------------------------------------- /collections/_posts/2018-12-29-writing-with-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/collections/_posts/2018-12-29-writing-with-markdown.md -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/favicon.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/index.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zerostaticthemes/jekyll-atlantic-theme/HEAD/tailwind.config.js --------------------------------------------------------------------------------