├── content
├── category
│ ├── art.json
│ ├── music.json
│ ├── setup.json
│ ├── design.json
│ ├── internet.json
│ └── photography.json
├── blog
│ ├── 2018-05-06-seattle.md
│ ├── 2020-09-06-rufus-du-sol-joshua-tree.md
│ ├── 2018-07-08-14th-factory.md
│ ├── 2018-07-17-my-house-title-sequence.md
│ ├── 2019-03-28-0-1-3-update.md
│ ├── 2018-07-08-menu-setup-—-pages-links.md
│ ├── 2018-07-17-nicolas-jaar-selected-network-sets.md
│ ├── 2018-07-29-featured-in.md
│ ├── 2019-07-18-mentioned-by.md
│ ├── 2018-07-17-belief-defect-—-new-brvtalism-121-mix.md
│ ├── 2018-02-13-hello-world.md
│ ├── 2019-05-26-0-2-1-update-new-alt-layout.md
│ ├── 2018-07-08-email-newsletter-setup-instructions.md
│ ├── 2018-06-19-top-10-reasons-why.md
│ ├── 2018-06-19-lorem-ipsum.md
│ └── 2018-07-07-markdown-test.md
├── page
│ ├── about.md
│ ├── inspired-by.md
│ └── changelog.md
└── setup
│ ├── connect.json
│ └── info.json
├── plugins
├── moment.js
├── lazyload.js
├── browser.js
└── dom-handlers.js
├── .gitattributes
├── static
├── icon.png
├── favicon.ico
├── images
│ └── uploads
│ │ ├── 14th.jpg
│ │ ├── icon.png
│ │ ├── belief.jpg
│ │ ├── define.png
│ │ ├── desert.jpg
│ │ ├── email.png
│ │ ├── fling.jpg
│ │ ├── signup.png
│ │ ├── bael-big.jpg
│ │ ├── baeltype.png
│ │ ├── changelog.jpg
│ │ ├── img_2148.jpg
│ │ ├── seattle.jpg
│ │ ├── menu-setup.jpg
│ │ ├── menubackend.png
│ │ ├── bael-0.1.3update.jpg
│ │ ├── turn-on-sendgrid.png
│ │ ├── 14th-factory-collage.jpg
│ │ ├── menu-animation-cropped.gif
│ │ ├── jake-peterson-1530918-unsplash.jpg
│ │ └── twitter-glitched-7-18-2019-6-26-49-pm.png
├── _headers
├── README.md
├── sw.js
└── admin
│ ├── index.html
│ └── config.yml
├── .gitignore
├── components
├── README.md
├── FeaturedImage.vue
├── SmoothReflow.vue
├── SendGrid.vue
├── BaelGrid.vue
├── BaelSearch.vue
├── BaelHeader.vue
├── BaelPagination.vue
├── BaelFooter.vue
├── FullGrid.vue
└── SlideOut.vue
├── middleware
├── title.js
└── README.md
├── layouts
├── README.md
└── default.vue
├── pages
├── README.md
├── categories.vue
├── category
│ └── _slug.vue
├── page
│ └── _slug.vue
├── p
│ └── _page.vue
├── index.vue
└── blog
│ └── _slug.vue
├── assets
├── bx-search.svg
├── README.md
├── content.scss
├── grid.css
└── deploy.svg
├── store
├── README.md
├── browser.js
└── index.js
├── netlify.toml
├── app.html
├── LICENSE
├── package.json
├── README.md
├── directives
└── intersect.js
├── src
└── sendgrid
│ └── app.js
└── nuxt.config.js
/content/category/art.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Art"
3 | }
--------------------------------------------------------------------------------
/content/category/music.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Music"
3 | }
--------------------------------------------------------------------------------
/content/category/setup.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Setup"
3 | }
--------------------------------------------------------------------------------
/content/category/design.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Design"
3 | }
--------------------------------------------------------------------------------
/content/category/internet.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Internet"
3 | }
--------------------------------------------------------------------------------
/plugins/moment.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | Vue.use(require('vue-moment'))
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/static/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/icon.png
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/plugins/lazyload.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import VueLazyload from 'vue-lazyload'
3 |
4 | Vue.use(VueLazyload)
5 |
--------------------------------------------------------------------------------
/static/images/uploads/14th.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/14th.jpg
--------------------------------------------------------------------------------
/static/images/uploads/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/icon.png
--------------------------------------------------------------------------------
/static/images/uploads/belief.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/belief.jpg
--------------------------------------------------------------------------------
/static/images/uploads/define.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/define.png
--------------------------------------------------------------------------------
/static/images/uploads/desert.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/desert.jpg
--------------------------------------------------------------------------------
/static/images/uploads/email.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/email.png
--------------------------------------------------------------------------------
/static/images/uploads/fling.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/fling.jpg
--------------------------------------------------------------------------------
/static/images/uploads/signup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/signup.png
--------------------------------------------------------------------------------
/static/images/uploads/bael-big.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/bael-big.jpg
--------------------------------------------------------------------------------
/static/images/uploads/baeltype.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/baeltype.png
--------------------------------------------------------------------------------
/static/images/uploads/changelog.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/changelog.jpg
--------------------------------------------------------------------------------
/static/images/uploads/img_2148.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/img_2148.jpg
--------------------------------------------------------------------------------
/static/images/uploads/seattle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/seattle.jpg
--------------------------------------------------------------------------------
/static/images/uploads/menu-setup.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/menu-setup.jpg
--------------------------------------------------------------------------------
/static/images/uploads/menubackend.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/menubackend.png
--------------------------------------------------------------------------------
/static/images/uploads/bael-0.1.3update.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/bael-0.1.3update.jpg
--------------------------------------------------------------------------------
/static/images/uploads/turn-on-sendgrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/turn-on-sendgrid.png
--------------------------------------------------------------------------------
/content/category/photography.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Photography",
3 | "description": "A visual log of experiences, emotions, and memories"
4 | }
--------------------------------------------------------------------------------
/static/images/uploads/14th-factory-collage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/14th-factory-collage.jpg
--------------------------------------------------------------------------------
/static/images/uploads/menu-animation-cropped.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/menu-animation-cropped.gif
--------------------------------------------------------------------------------
/static/images/uploads/jake-peterson-1530918-unsplash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/jake-peterson-1530918-unsplash.jpg
--------------------------------------------------------------------------------
/static/images/uploads/twitter-glitched-7-18-2019-6-26-49-pm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jake-101/bael-template/HEAD/static/images/uploads/twitter-glitched-7-18-2019-6-26-49-pm.png
--------------------------------------------------------------------------------
/content/blog/2018-05-06-seattle.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Seattle
3 | date: Sunday May 6th, 2018
4 | thumbnail: /images/uploads/seattle.jpg
5 | category: Photography
6 | ---
7 |
8 | It was fun visiting the Museum of Pop Culture.
9 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | node_modules
3 |
4 | # logs
5 | npm-debug.log
6 |
7 | # Nuxt build
8 | .nuxt
9 |
10 | # Nuxt generate
11 | dist
12 |
13 | # Nuxt generate
14 | sw.*
15 | sw.js
16 |
17 | /static/sw.js
18 |
--------------------------------------------------------------------------------
/components/README.md:
--------------------------------------------------------------------------------
1 | # COMPONENTS
2 |
3 | The components directory contains your Vue.js Components.
4 | Nuxt.js doesn't supercharge these components.
5 |
6 | **This directory is not required, you can delete it if you don't want to use it.**
7 |
--------------------------------------------------------------------------------
/middleware/title.js:
--------------------------------------------------------------------------------
1 | export default function ({ store }) {
2 | store.commit('SET_CURRENT', {})
3 | store.commit('SET_PAGINATION', {})
4 | if (store.state.menuIsActive === !false) {
5 | console.log('menu')
6 |
7 |
8 | store.commit('setMenuState', false)
9 | }
10 |
11 | }
--------------------------------------------------------------------------------
/layouts/README.md:
--------------------------------------------------------------------------------
1 | # LAYOUTS
2 |
3 | This directory contains your Application Layouts.
4 |
5 | More information about the usage of this directory in the documentation:
6 | https://nuxtjs.org/guide/views#layouts
7 |
8 | **This directory is not required, you can delete it if you don't want to use it.**
9 |
--------------------------------------------------------------------------------
/static/_headers:
--------------------------------------------------------------------------------
1 | /sw.js
2 | Cache-Control: no-cache
3 | /images/*
4 | Cache-Control: public, max-age=3600000
5 | /favicon.ico
6 | Cache-Control: public, max-age=3600000
7 | /icon.png
8 | Cache-Control: public, max-age=3600000
9 | /_nuxt/*
10 | Cache-Control: public, immutable, max-age=36000000
--------------------------------------------------------------------------------
/pages/README.md:
--------------------------------------------------------------------------------
1 | # PAGES
2 |
3 | This directory contains your Application Views and Routes.
4 | The framework reads all the .vue files inside this directory and creates the router of your application.
5 |
6 | More information about the usage of this directory in the documentation:
7 | https://nuxtjs.org/guide/routing
8 |
--------------------------------------------------------------------------------
/assets/bx-search.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/assets/README.md:
--------------------------------------------------------------------------------
1 | # ASSETS
2 |
3 | This directory contains your un-compiled assets such as LESS, SASS, or JavaScript.
4 |
5 | More information about the usage of this directory in the documentation:
6 | https://nuxtjs.org/guide/assets#webpacked
7 |
8 | **This directory is not required, you can delete it if you don't want to use it.**
9 |
--------------------------------------------------------------------------------
/content/page/about.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: About
3 | date: 2018-07-07T03:00:50-07:00
4 | thumbnail: /images/uploads/bael-big.jpg
5 | ---
6 | # Bael is a free blogging theme to use with Netlify CMS. It has a utilitarian, brutalist design that lends itself to written content and full width images.
7 |
8 | Available on [Github](https://github.com/jake-101/bael-template)
9 | MIT Open Source License
--------------------------------------------------------------------------------
/components/FeaturedImage.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
13 |
--------------------------------------------------------------------------------
/content/blog/2020-09-06-rufus-du-sol-joshua-tree.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Rufus Du Sol Live in Joshua Tree
3 | date: Sunday September 6th, 2020
4 | thumbnail: /images/uploads/desert.jpg
5 | category: Music
6 | ---
7 |
8 |
--------------------------------------------------------------------------------
/static/README.md:
--------------------------------------------------------------------------------
1 | # STATIC
2 |
3 | This directory contains your static files.
4 | Each file inside this directory is mapped to /.
5 |
6 | Example: /static/robots.txt is mapped as /robots.txt.
7 |
8 | More information about the usage of this directory in the documentation:
9 | https://nuxtjs.org/guide/assets#static
10 |
11 | **This directory is not required, you can delete it if you don't want to use it.**
12 |
--------------------------------------------------------------------------------
/middleware/README.md:
--------------------------------------------------------------------------------
1 | # MIDDLEWARE
2 |
3 | This directory contains your Application Middleware.
4 | The middleware lets you define custom function to be ran before rendering a page or a group of pages (layouts).
5 |
6 | More information about the usage of this directory in the documentation:
7 | https://nuxtjs.org/guide/routing#middleware
8 |
9 | **This directory is not required, you can delete it if you don't want to use it.**
10 |
--------------------------------------------------------------------------------
/content/blog/2018-07-08-14th-factory.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: 14th Factory
3 | date: Sunday July 8th, 2018
4 | thumbnail: /images/uploads/14th.jpg
5 | category: Photography
6 | ---
7 |
8 | # [The 14th Factory LA](https://the14thfactory.com/) was a monumental, multiple-media, socially engaged art installation conceived by the Hong Kong-based British artist Simon Birch.
9 |
10 | 
11 |
--------------------------------------------------------------------------------
/store/README.md:
--------------------------------------------------------------------------------
1 | # STORE
2 |
3 | This directory contains your Vuex Store files.
4 | Vuex Store option is implemented in the Nuxt.js framework.
5 | Creating a index.js file in this directory activate the option in the framework automatically.
6 |
7 | More information about the usage of this directory in the documentation:
8 | https://nuxtjs.org/guide/vuex-store
9 |
10 | **This directory is not required, you can delete it if you don't want to use it.**
11 |
--------------------------------------------------------------------------------
/layouts/default.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
21 |
--------------------------------------------------------------------------------
/content/setup/connect.json:
--------------------------------------------------------------------------------
1 | {
2 | "connectlinks": [
3 | {
4 | "name": "Twitter",
5 | "url": "https://twitter.com/jasperketone"
6 | },
7 | {
8 | "name": "LinkedIn",
9 | "url": "https://www.linkedin.com/in/jake-peterson-101/"
10 | },
11 | {
12 | "name": "Github",
13 | "url": "https://github.com/jake-101"
14 | },
15 | {
16 | "name": "Unsplash",
17 | "url": "https://unsplash.com/@jake101"
18 | }
19 | ]
20 | }
--------------------------------------------------------------------------------
/content/blog/2018-07-17-my-house-title-sequence.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: My House Title Sequence
3 | date: Tuesday July 17th, 2018
4 | category: Design
5 | ---
6 |
7 |
8 |
9 |