initial commit
This commit is contained in:
commit
8a54e90e57
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
public/
|
||||
resources/
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "themes/hugo-sustain"]
|
||||
path = themes/hugo-sustain
|
||||
url = https://github.com/suyundukov/hugo-sustain.git
|
8
archetypes/default.md
Normal file
8
archetypes/default.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: '{{ humanize .Name }}'
|
||||
description: ''
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
categories: []
|
||||
tags: []
|
||||
---
|
18
assets/sass/overrides.scss
Normal file
18
assets/sass/overrides.scss
Normal file
@ -0,0 +1,18 @@
|
||||
$primary-color: #ABC9E3;
|
||||
$hover-color: #5E7191;
|
||||
|
||||
html, body {
|
||||
border-top-color: $primary-color;
|
||||
}
|
||||
div.footer {
|
||||
border-bottom-color: $primary-color;
|
||||
}
|
||||
.container a {
|
||||
color: $primary-color;
|
||||
}
|
||||
.container a:hover {
|
||||
color: $hover-color;
|
||||
}
|
||||
.panel-default h4 a, h5 a {
|
||||
color: $primary-color;
|
||||
}
|
51
config.toml
Executable file
51
config.toml
Executable file
@ -0,0 +1,51 @@
|
||||
baseURL = "https://drop1.neilhanlon.me:1313/"
|
||||
languageCode = "en-US"
|
||||
title = "Neil Hanlon"
|
||||
# Enable comments by entering your Disqus shortname
|
||||
disqusShortname = ""
|
||||
# Enable Google Analytics by entering your tracking code
|
||||
googleAnalytics = ""
|
||||
theme = "hugo-sustain"
|
||||
|
||||
[permalinks]
|
||||
post = "/:year/:month/:day/:slug"
|
||||
|
||||
[params]
|
||||
avatar = "img/profile.png"
|
||||
author = "Neil Hanlon"
|
||||
description = "Neil Hanlon - Senior Network/DevOps/Infrastructure Engineer"
|
||||
|
||||
# Custom assets can be linked with their paths relative to static/
|
||||
custom_css = []
|
||||
custom_scss = ['sass/overrides.scss']
|
||||
custom_js = []
|
||||
|
||||
[params.social]
|
||||
Github = "NeilHanlon"
|
||||
Email = "neil@shrug.pw.com"
|
||||
Twitter = "NeilHanlon"
|
||||
LinkedIn = "hanlonneil"
|
||||
#Stackoverflow = "username"
|
||||
#Medium = "hanlon.neil"
|
||||
Instagram = "noellathekitty"
|
||||
|
||||
[params.volunteer]
|
||||
Rocky = "https://rockylinux.org"
|
||||
|
||||
|
||||
## Main Menu
|
||||
[[menu.main]]
|
||||
name = "posts"
|
||||
weight = 100
|
||||
identifier = "posts"
|
||||
url = "/posts/"
|
||||
[[menu.main]]
|
||||
name = "projects"
|
||||
identifier = "projects"
|
||||
weight = 200
|
||||
url = "/projects/"
|
||||
[[menu.main]]
|
||||
name = "resume"
|
||||
identifier = "resume"
|
||||
weight = 300
|
||||
url = "/resume.pdf"
|
20
content/_index.md
Normal file
20
content/_index.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
---
|
||||
|
||||
I'm **Neil Hanlon**, a DevOps/Network/Potato Engineer
|
||||
|
||||
I love Open Source, Linux, and building cool things with great people.
|
||||
|
||||
Feel free to take a peek at some of my [projects], or check out my cat's [Instagram].
|
||||
|
||||
For more check out my academic & professional [resume].
|
||||
|
||||
Contact me at [@NeilHanlon] or by yelling really really loud.
|
||||
|
||||
|
||||
|
||||
[projects]: /projects
|
||||
[resume]: https://shrug.pw/resume.pdf
|
||||
[@NeilHanlon]: https://twitter.com/NeilHanlon
|
||||
[instagram]: https://instagram.com/noellathekitty
|
||||
|
6
content/posts/my-first-post.md
Normal file
6
content/posts/my-first-post.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "My First Post"
|
||||
date: 2021-09-01T16:05:21-04:00
|
||||
draft: false
|
||||
---
|
||||
|
6
content/projects/_index.md
Normal file
6
content/projects/_index.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
categories: ["projects"]
|
||||
date: "2016-10-02T22:55:05-04:00"
|
||||
tags: ["projects"]
|
||||
title: "Projects"
|
||||
---
|
6
data/projects.yml
Normal file
6
data/projects.yml
Normal file
@ -0,0 +1,6 @@
|
||||
name: Projects
|
||||
source:
|
||||
- icon: fa fa-github
|
||||
name: Rocky Linux
|
||||
description: All the infrastructure for Rocky Linux, from soup to nuts. Work with a team of professionals to architect, design, and implement secure systems and proceudres to write Infrastructure as Code to provide systems for the various teams within the Rocky Enterprise Software Foundation, especially Rocky Linux as it gets off the ground. Also work closely with Release Engineering on building next generation Build Automation pipeline tools and ensuring reliability and security in the supply chain.
|
||||
url: https://github.com/rocky-linux/
|
BIN
static/css/images/bg.jpg
Normal file
BIN
static/css/images/bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 MiB |
BIN
static/img/fullres.jpg
Normal file
BIN
static/img/fullres.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 MiB |
BIN
static/img/profile.png
Normal file
BIN
static/img/profile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 38 KiB |
BIN
static/img/profile.png.def
Executable file
BIN
static/img/profile.png.def
Executable file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
1
themes/hugo-sustain
Submodule
1
themes/hugo-sustain
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 3f1d648b038fc93be501e0cac8101bd57b51039c
|
Loading…
Reference in New Issue
Block a user