-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path_config.yml
More file actions
65 lines (57 loc) · 1.21 KB
/
Copy path_config.yml
File metadata and controls
65 lines (57 loc) · 1.21 KB
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
# GoLearn Documentation Site
# A fun, gopher-themed Jekyll site for Go learning
title: GoLearn
description: "Learn Go the fun way! A Rustlings-style interactive Go tutorial with gopher-powered exercises."
author: "GoLearn Team"
email: "golearn@example.com"
url: "https://golearn.dev"
baseurl: ""
# Jekyll configuration
markdown: kramdown
highlighter: rouge
theme: minima
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Site settings
exclude:
- Gemfile
- Gemfile.lock
- README.md
- vendor/
# Collections
collections:
exercises:
output: true
permalink: /:name/
# Default layouts
defaults:
- scope:
path: ""
type: "pages"
values:
layout: "default"
- scope:
path: ""
type: "exercises"
values:
layout: "exercise"
# Navigation
header_pages:
- index.md
- getting-started.md
- exercises.md
- contributing.md
- about.md
# Gopher theme settings
gopher_theme:
primary_color: "#00ADD8" # Go blue
secondary_color: "#5DC9E2" # Light blue
accent_color: "#FF6B6B" # Fun red
text_color: "#2D3748" # Dark gray
background_color: "#F7FAFC" # Light gray
# Social links (optional)
social:
github: "your-username/golearn"
twitter: "golearn_dev"