forked from c4cs/c4cs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.yml
105 lines (95 loc) · 2.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
title: Computing for Computer Scientists
email: [email protected]
description: > # this means to ignore newlines until "url:"
This 1-credit seminar is designed to teach the essentials of using a computer
effectively for EECS students. While the target audience is CS/CE/DS
students, any student wishing to learn how to use their computer much more
effectively is encouraged to join. Topics covered include shells,
environment, scripting, Makefiles, compilers, debugging tools, and version
control. The last month of the course will be open to student input for
remaining useful topics to cover.
url: "https://c4cs.github.io" # the base hostname & protocol for your site
google_analytics_id: UA-70360310-1
timezone: America/Detroit
permalink: none
collections:
commands:
output: true
permalink: /commands/:title
syllabus:
updates:
lectures:
output: true
defaults:
- scope:
type: lectures
values:
layout: lecture
- scope:
path: "_lectures/f16"
values:
category: f16
- scope:
path: "_updates/f16"
values:
category: f16
- scope:
path: "_updates/w16"
values:
category: w16
- scope:
type: syllabus
values:
layout: syllabus
- scope:
path: "_syllabus/f16"
values:
category: f16
- scope:
type: commands
values:
layout: reference
- scope:
path: "_commands/basics"
values:
category: basics
- scope:
path: "_commands/shells"
values:
category: shells
- scope:
path: "_commands/scripting"
values:
category: scripting
- scope:
path: "_commands/tools"
values:
category: tools
- scope:
path: "_commands/editors"
values:
category: editors
- scope:
path: "_commands/toys"
values:
category: toys
- scope:
path: "_commands/ubuntu"
values:
category: ubuntu
- scope:
path: "_commands/os_x"
values:
category: os_x
command_categories: ["basics", "shells", "scripting", "tools", "editors", "toys", "ubuntu", "os_x"]
# Build settings
markdown: kramdown
# This is a bit of a hack, since we're using remark, which expects
# to render markdown itself, we need to prevent jekyll from picking
# it up and parsing it, however we would still like to use the templating
# features of jekyll so that we can just write slides alone, in a
# markdown file. Thus we override the extensions list so that jekyll does
# not treat .markdown files as markdown.
markdown_ext: "mkdown,mkdn,mkd,md"
# Needed for Travis
exclude: [vendor]