forked from Eligeant/Portfolio-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
153 lines (135 loc) · 5.21 KB
/
Copy path_config.yml
File metadata and controls
153 lines (135 loc) · 5.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# ─────────────────────────────────────────────
# SITE IDENTITY
# ─────────────────────────────────────────────
title: "Patrick Pistor"
tagline: "Software Engineer"
description: "Software engineer based in Bentonville, Arkansas."
email: "[email protected]"
url: "https://patrickpistor.com"
baseurl: ""
# ─────────────────────────────────────────────
# BRANDING
# ─────────────────────────────────────────────
# Accent color — used for links, buttons, tags, and highlights.
# Any valid hex value (include the #).
accent_color: "#f6e251"
# Font pairing — choose one: modern | editorial | mono | classic
# modern → Inter (clean, professional)
# editorial → Playfair Display + Source Serif 4 (literary, warm)
# mono → Space Grotesk + JetBrains Mono (technical, distinct)
# classic → Lora + Open Sans (timeless, readable)
font_pairing: "modern"
# Logo / avatar (optional)
# Path relative to the site root. Leave blank to show your name as text.
# TODO: add your photo at assets/images/avatar.png
logo: ""
avatar: "/assets/images/avatar.png"
# Favicon (optional) — path to an .ico/.png/.svg file.
# Leave blank to auto-generate one from your accent color and the first letter of your title.
favicon: ""
# ─────────────────────────────────────────────
# NAVIGATION
# ─────────────────────────────────────────────
nav_links:
- label: "Work"
url: "/work/"
- label: "Writing"
url: "/writing/"
- label: "About"
url: "/about/"
# Pointing to LinkedIn for now — swap to /assets/resume.pdf once your resume is ready
- label: "Resume"
url: "https://www.linkedin.com/in/ppistor/"
contact_label: "Contact"
contact_url: "mailto:[email protected]"
# ─────────────────────────────────────────────
# HOME PAGE
# ─────────────────────────────────────────────
hero_greeting: "Hi, I'm Patrick."
# TODO: update this intro with your own words
hero_intro: "Software engineer based in Bentonville, Arkansas."
# Pointing to LinkedIn for now — swap to /assets/resume.pdf once your resume is ready
hero_cta_label: "View my Resume"
hero_cta_url: "https://www.linkedin.com/in/ppistor/"
# ─────────────────────────────────────────────
# ABOUT PAGE
# ─────────────────────────────────────────────
# TODO: write your bio here (supports Markdown)
about_bio: |
I'm a software engineer based in Bentonville, Arkansas.
# TODO: replace with your actual skills
skills:
- Software Engineering
- Web Development
# Social links — shown as icons in the footer.
# Add, remove, or reorder entries freely.
# Available icons: github, x, linkedin, dribbble, instagram, behance, codepen, youtube, substack
social_links:
- label: "GitHub"
url: "https://github.com/patrickpistor"
icon: "github"
- label: "LinkedIn"
url: "https://www.linkedin.com/in/ppistor/"
icon: "linkedin"
- label: "Dribbble"
url: "https://dribbble.com/patrickpistor"
icon: "dribbble"
- label: "Substack"
url: "https://patrickpistor.substack.com/"
icon: "substack"
# - label: "Twitter / X"
# url: "https://x.com/yourusername"
# icon: "x"
# - label: "CodePen"
# url: "https://codepen.io/yourusername"
# icon: "codepen"
# - label: "Instagram"
# url: "https://instagram.com/yourusername"
# icon: "instagram"
# - label: "Behance"
# url: "https://behance.net/yourusername"
# icon: "behance"
# - label: "YouTube"
# url: "https://youtube.com/@yourusername"
# icon: "youtube"
# - label: "Substack"
# url: "https://yourname.substack.com"
# icon: "substack"
# ─────────────────────────────────────────────
# JEKYLL SETTINGS
# ─────────────────────────────────────────────
markdown: kramdown
highlighter: rouge
kramdown:
input: GFM
syntax_highlighter: rouge
collections:
projects:
output: true
permalink: /work/:name/
defaults:
- scope:
path: ""
type: "posts"
values:
layout: "post"
- scope:
path: ""
type: "projects"
values:
layout: "project-mixed"
permalink: /writing/:year/:month/:day/:title/
plugins:
- jekyll-feed
- jekyll-seo-tag
- jekyll-sitemap
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor
- .bundle
- .sass-cache
- README.md
- CONTRIBUTING.md
- docs