-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
50 lines (47 loc) · 1.32 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Site settings
# Al Maline configurations.
title: Thoughts on Continuous Integration in the Cloud
email: [email protected]
description: > # this means to ignore newlines until "baseurl:"
Musings and notes during my discovery of cloud based
continuous integration.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: alanmaline
github_username: amaline
# Build settings
markdown: kramdown
prose:
rooturl: '_posts'
siteurl: 'http://amaline.github.io/'
ignore:
- index.md
- _config.yml
- /_layouts
- /_includes
- circle.yml
- Dockerfile
metadata:
_posts:
- name: "layout"
field:
element: "select"
label: "Layout"
help: "Layout for the article"
options:
- name: "Blog post"
value: "post"
- name: 'News post'
value: 'news'
- name: "categories"
field:
element: "Multiselect"
label: "Categories"
help: "Categories for the article"
options:
- name: 'Jekyll update'
value: 'Jekyll update'
- name: 'Continuous Integration'
value: 'CI'
- name: 'Continuous Deployment'
value: 'CD'