Skip to content

Commit 7a9bb1f

Browse files
author
Enda
authored
Merge pull request #4 from craicoverflow/new-site
update website theme
2 parents 3d4cea9 + 264a32e commit 7a9bb1f

32 files changed

+139
-2449
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@
88
path = public
99
url = https://github.com/craicoverflow/craicoverflow.github.io.git
1010
branch = master
11+
[submodule "themes/PaperMod"]
12+
path = themes/PaperMod
13+
url = https://github.com/adityatelange/hugo-PaperMod.git

.hugo_build.lock

Whitespace-only changes.

CNAME

Lines changed: 0 additions & 1 deletion
This file was deleted.

archetypes/default.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "{{ replace .Name "-" " " | title }}"
33
date: {{ .Date }}
4-
draft: true
4+
draft: false
55
---
66

config.toml

Lines changed: 0 additions & 64 deletions
This file was deleted.

config.yml

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
baseURL: "https://endaphelan.me"
2+
title: Enda Phelan
3+
paginate: 5
4+
theme: PaperMod
5+
6+
enableRobotsTXT: true
7+
buildDrafts: false
8+
buildFuture: false
9+
buildExpired: false
10+
11+
googleAnalytics: UA-120307448-1
12+
13+
minify:
14+
disableXML: true
15+
minifyOutput: true
16+
17+
params:
18+
env: production # to enable google analytics, opengraph, twitter-cards and schema.
19+
title: Enda Phelan
20+
description: "Enda's thoughts"
21+
keywords: [Blog, Portfolio]
22+
author: Me
23+
# author: ["Me", "You"] # multiple authors
24+
# images: ["<link or path of image for opengraph, twitter-cards>"]
25+
DateFormat: "January 2, 2006"
26+
defaultTheme: auto # dark, light
27+
disableThemeToggle: false
28+
29+
ShowReadingTime: true
30+
ShowShareButtons: true
31+
ShowPostNavLinks: true
32+
ShowBreadCrumbs: true
33+
ShowCodeCopyButtons: false
34+
disableSpecial1stPost: false
35+
disableScrollToTop: false
36+
comments: false
37+
hidemeta: false
38+
hideSummary: false
39+
showtoc: false
40+
tocopen: false
41+
42+
assets:
43+
# disableHLJS: true # to disable highlight.js
44+
# disableFingerprinting: true
45+
favicon: "<link / abs url>"
46+
favicon16x16: "<link / abs url>"
47+
favicon32x32: "<link / abs url>"
48+
apple_touch_icon: "<link / abs url>"
49+
safari_pinned_tab: "<link / abs url>"
50+
51+
label:
52+
text: "Enda Phelan"
53+
# icon: /apple-touch-icon.png
54+
iconHeight: 35
55+
56+
# profile-mode
57+
profileMode:
58+
enabled: false # needs to be explicitly set
59+
title: Enda Phelan
60+
subtitle: "Developer developing developer tools and occasionally blogging about what I do."
61+
imageUrl: "https://avatars.githubusercontent.com/u/11743717?s=400&u=1f2dbf4bf032cce8d2d062f65d3077697d7aa900&v=4"
62+
imageWidth: 140
63+
imageHeight: 140
64+
imageTitle: Mugshot
65+
66+
# home-info mode
67+
homeInfoParams:
68+
# Title: "Hi there \U0001F44B"
69+
Content: >
70+
Hi there. I'm Enda, a software engineer building open source projects with a particular focus on API design and developer experience.
71+
Every now and then I will post here about my experiences in this field.
72+
I'm open to collaborating or chatting about anything, so if you want to you can reach me on [Polywork](https://www.polywork.com/endaphelan) [Twitter](https://twitter.com/PhelanEnda) 😃.
73+
74+
socialIcons:
75+
- name: twitter
76+
url: "https://twitter.com/PhelanEnda"
77+
- name: github
78+
url: "https://github.com/craicoverflow"
79+
- name: polywork
80+
url: "https://www.polywork.com/endaphelan"
81+
- name: instagram
82+
url: "https://instagram.com/enda.phelan"
83+
- name: linkedin
84+
url: "https://linkedin.com/in/endaphelan"
85+
86+
analytics:
87+
google:
88+
SiteVerificationTag: "UA-120307448-1"
89+
90+
cover:
91+
hidden: true # hide everywhere but not in structured data
92+
hiddenInList: true # hide on list pages and home
93+
hiddenInSingle: true # hide on single page
94+
95+
editPost:
96+
URL: "https://github.com/craicoverflow/craicoverflow.github.io/content"
97+
Text: "Suggest Changes" # edit text
98+
appendFilePath: true # to append file path to Edit link
99+
100+
# for search
101+
# https://fusejs.io/api/options.html
102+
fuseOpts:
103+
isCaseSensitive: false
104+
shouldSort: true
105+
location: 0
106+
distance: 1000
107+
threshold: 0.4
108+
minMatchCharLength: 0
109+
keys: ["title", "permalink", "summary", "content"]
110+
menu:
111+
main:
112+
- identifier: posts
113+
name: Posts
114+
url: /posts/
115+
weight: 10
116+
# - identifier: archive
117+
# name: Archive
118+
# url: /archives/
119+
# weight: 20
120+
# Read: https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#using-hugos-syntax-highlighter-chroma
121+
# pygmentsUseClasses: true
122+
# markup:
123+
# highlight:
124+
# # anchorLineNos: true
125+
# codeFences: true
126+
# guessSyntax: true
127+
# lineNos: true
128+
# style: monokai

content/archives.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Archive"
3+
layout: "archives"
4+
# url: "/archives"
5+
summary: "archives"
6+
---

content/posts/a-no-nonsense-guide-to-environment-variables-in-go.md

Lines changed: 0 additions & 97 deletions
This file was deleted.

0 commit comments

Comments
 (0)