-
Notifications
You must be signed in to change notification settings - Fork 2
/
_config.yml
84 lines (78 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
title: vanilla-project.guide
description: >
How do I start a project in a new language?
baseurl: ""
url: "https://vanilla-project.guide"
port: 8080
host: 0.0.0.0
show_dir_listing: false
markdown: kramdown
plugins:
- jekyll-feed
exclude:
- contributing.md
- template.md
permalink: pretty
collections:
guides:
output: true
permalink: /:path/
defaults:
- scope:
path: ""
type: guides
values:
layout: page
- scope:
path: "_guides/ruby"
values:
language: Ruby
icon: ruby.svg
paradigms:
- object-oriented
- dynamically-typed
color: "#701516"
- scope:
path: "_guides/node"
values:
language: JavaScript
icon: js.svg
paradigms:
- object-oriented
- dynamically-typed
color: "#f1e05a"
- scope:
path: "_guides/php"
values:
language: PHP
icon: php.svg
paradigms:
- object-oriented
- dynamically-typed
color: "#4F5D95"
- scope:
path: "_guides/java"
values:
language: Java
icon: java.svg
paradigms:
- object-oriented
- statically-typed
color: "#F89820"
- scope:
path: "_guides/python"
values:
language: Python
icon: python.svg
paradigms:
- object-oriented
- dynamically-typed
color: "#3572A5"
- scope:
path: "_guides/rust"
values:
language: Rust
icon: rust.svg
paradigms:
- statically-typed
color: "#DEA584"