Compare commits
10 Commits
33f8e09a20
...
ddcba6ffd2
Author | SHA1 | Date | |
---|---|---|---|
|
ddcba6ffd2 | ||
|
8c28a1cfd4 | ||
|
1e99fd0265 | ||
|
5475615d62 | ||
|
09587fe04f | ||
|
f6d8ad600d | ||
|
c19c2818d7 | ||
815bdfc83b | |||
e95a219804 | |||
1e62b2fbe0 |
20
.gitignore
vendored
Normal file
20
.gitignore
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/hugo
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=hugo
|
||||
|
||||
### Hugo ###
|
||||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
# Temporary lock file while building
|
||||
/.hugo_build.lock
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/hugo
|
||||
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "themes/PaperMod"]
|
||||
path = themes/PaperMod
|
||||
url = https://github.com/adityatelange/hugo-PaperMod.git
|
@ -1,5 +1,5 @@
|
||||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
||||
---
|
||||
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
8
content/about/_index.md
Normal file
8
content/about/_index.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: About Me
|
||||
date: 2023-11-08T10:22:23-08:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
Maybe I will add a brief bio. Until then, this is just a landing page for
|
||||
information about me.
|
7
content/about/resume.md
Normal file
7
content/about/resume.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: 'Resume'
|
||||
date: 2023-11-08T10:22:23-08:00
|
||||
draft: true
|
||||
---
|
||||
|
||||
Just a placeholder
|
7
content/posts/_index.md
Normal file
7
content/posts/_index.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Posts
|
||||
date: 2023-12-19T10:22:23-08:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
My public writings.
|
24
content/posts/starting-a-blog.md
Normal file
24
content/posts/starting-a-blog.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: 'Starting a Blog'
|
||||
date: 2023-12-19T09:41:48-08:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
This is my personal 1990s moment: I'm starting a blog. And I writing this in a
|
||||
café.[^la-scala] I writing this blog for few reasons.
|
||||
|
||||
Foremost, I like to write. I believe in
|
||||
the cliché that clear writing is clear think. Writing helps me organize my
|
||||
thoughts and present them in a way that is hopefully helpful to others.
|
||||
Selfishly, this helps me either work through issues--professional or
|
||||
otherwise--and do so in way that others will useful.
|
||||
|
||||
Secondly, I have had the fortune to have learned from many people during my
|
||||
life. I have also worked on several technical
|
||||
problems.
|
||||
I would like to use this platform to reflect on the lessons that I have
|
||||
learned and pass these along to others.
|
||||
|
||||
|
||||
[^la-scala]: [Caffé La Scala](https://www.caffelascala.com/menu) in Walnut
|
||||
Creek, California to be precise. Highly recommended.
|
100
hugo.yaml
100
hugo.yaml
@ -1,3 +1,97 @@
|
||||
baseURL: 'https://example.org/'
|
||||
languageCode: 'en-us'
|
||||
title: 'My New Hugo Site'
|
||||
baseURL: "https://axs.sdf.org/"
|
||||
languageCode: en
|
||||
title: Andrew Stryker
|
||||
theme: PaperMod
|
||||
|
||||
enableRobotsTXT: true
|
||||
|
||||
params:
|
||||
description: Just a great personal website
|
||||
|
||||
# PaperMod settings
|
||||
ShowReadingTime: true
|
||||
ShowCodeCopyButtons: true
|
||||
|
||||
assets:
|
||||
disableFingerprinting: true
|
||||
|
||||
# using Chroma highlighting...
|
||||
disableHLHS: true
|
||||
|
||||
# where to find articles
|
||||
# https://gohugo.io/functions/collections/where/#mainsections
|
||||
#mainSections:
|
||||
# - posts
|
||||
# - about
|
||||
# - projects
|
||||
# - tutorials
|
||||
|
||||
# Profile Mode
|
||||
# https://github.com/adityatelange/hugo-PaperMod/wiki/Features#profile-mode
|
||||
#
|
||||
# This places an image, a menu, social icons, buttons, and a title plus
|
||||
# a footer on each page. You do not get a place for text--igores content/_index.md
|
||||
profileMode:
|
||||
enabled: true
|
||||
title: Andrew Stryker
|
||||
subtitle: Data & Analytics · Unix · Leadership · Writing
|
||||
imageUrl: stryker-andrew-headshot-bw.jpeg
|
||||
imageTitle: Me
|
||||
imageWidth: 120
|
||||
imageHeight: 120
|
||||
|
||||
buttons:
|
||||
- name: About
|
||||
url: "/about"
|
||||
- name: Posts
|
||||
url: "/posts"
|
||||
|
||||
homeInfoParams:
|
||||
Title: Personal Website
|
||||
Content: >
|
||||
Fun times for all!
|
||||
|
||||
socialIcons:
|
||||
- name: linkedin
|
||||
url: "https://www.linkedin.com/in/andrewjstryker"
|
||||
- name: github
|
||||
url: "https://github.com/andrewjstryker"
|
||||
- name: mastodon
|
||||
url: "https://mastodon.sdf.org/@axs"
|
||||
- name: email
|
||||
url: "mailto:andrewjstryker@proton.me"
|
||||
|
||||
markup:
|
||||
|
||||
# Chroma highlighting
|
||||
# See:
|
||||
# https://github.com/adityatelange/hugo-PaperMod/wiki/FAQs#using-hugos-syntax-highlighter-chroma
|
||||
# https://gohugo.io/getting-started/configuration-markup/#highlight
|
||||
highlight:
|
||||
# anchorLineNos: true
|
||||
codeFences: true
|
||||
guessSyntax: true
|
||||
lineNos: true
|
||||
# noClasses: false
|
||||
# https://gohugo.io/content-management/syntax-highlighting/#generate-syntax-highlighter-css
|
||||
style: solarized-dark
|
||||
# https://gohugo.io/getting-started/configuration-markup/#table-of-contents
|
||||
|
||||
menu:
|
||||
main:
|
||||
- identifier: about
|
||||
name: About
|
||||
url: /about/
|
||||
weight: 10
|
||||
#- identifier: categories
|
||||
# name: Categories
|
||||
# url: /categories/
|
||||
# weight: 20
|
||||
#- identifier: tags
|
||||
# name: Tags
|
||||
# url: /tags/
|
||||
# weight: 30
|
||||
- identifier: posts
|
||||
name: Posts
|
||||
url: /posts/
|
||||
weight: 40
|
||||
|
1
themes/PaperMod
Submodule
1
themes/PaperMod
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 72ab73ffe5ba2354f71e419321134fd5f9cfd098
|
Loading…
Reference in New Issue
Block a user