-
Notifications
You must be signed in to change notification settings - Fork 121
/
mkdocs.yml
76 lines (70 loc) · 2.74 KB
/
mkdocs.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
site_name: Openlib.cs
docs_dir: '.'
site_author: ACM BPDC
site_description: A Collection of Free & Open Resources for University Coursework in Computer Science.
site_url: https://openlib-cs.acmbpdc.org
repo_url: https://github.com/acmbpdc/openlib.cs
repo_name: acmbpdc/openlib.cs
remote_branch: mkdocs-webpage
theme:
name: material
logo: assets/logo.png
favicon: assets/favicon.ico
icon: assets/logo.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.top
- navigation.sections
- navigation.instant
nav:
- Home: 'README.md'
- 1st Year:
- Computer Programming: './courses/CSF111/README.md'
- 2nd Year:
- Data Structures & Algorithms: './courses/CSF211/README.md'
- Database Systems: './courses/CSF212/README.md'
- Object Oriented Programming: './courses/CSF213/README.md'
- Logic in Computer Science: './courses/CSF214/README.md'
- Digital Design: './courses/CSF215/README.md'
- Discrete Structures for Computer Science: './courses/CSF222/README.md'
- Microprocessors & Interfacing: './courses/CSF241/README.md'
- 3rd Year:
- Principles of Programming Languages: './courses/CSF301/README.md'
- Computer Networks: './courses/CSF303/README.md'
- Computer Architecture: './courses/CSF342/README.md'
- Theory of Computation: './courses/CSF351/README.md'
- Compiler Construction: './courses/CSF363/README.md'
- Design & Analysis of Algorithms: './courses/CSF364/README.md'
- Operating Systems: './courses/CSF372/README.md'
- Electives:
- Computer Science:
- Information Retrieval: './courses/CSF469/README.md'
- Cryptography: './courses/CSF463/README.md'
- Number Theory: './courses/CSF231/README.md'
- Service Oriented Computing: './courses/CSF466/README.md'
- Quantum Computing: './courses/CSF386/README.md'
- Data Science:
- Artificial Intelligence: './courses/CSF407/README.md'
- Data Mining: './courses/CSF415/README.md'
- Machine Learning: './courses/CSF464/README.md'
- Foundations of Data Science: './courses/CSF320/README.md'
- Deep Learning: './courses/CSF425/README.md'
- Probability & Statistics: './courses/DATASCIW203/README.md'
plugins:
- search
- same-dir
extra_css:
- stylesheets/extra.css