landing pages, webmentions, fixes
parent
78bd86f850
commit
3576ec4b1f
|
|
@ -9,11 +9,12 @@ summaryLength = 32
|
|||
enableRobotsTXT = true
|
||||
enableEmoji = true
|
||||
|
||||
googleAnalytics = "UA-PROPERTY_ID"
|
||||
googleAnalytics = "UA-155338921-1"
|
||||
|
||||
[params]
|
||||
favicon = "/party-tp.gif"
|
||||
webmentions = true
|
||||
webmentionsToken = "ic1WKZMcnQjvAZzwdjSmpQ"
|
||||
|
||||
[markup]
|
||||
[markup.highlight]
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
title: Homepage
|
||||
---
|
||||
|
||||
|
||||
|
||||
# Hello 👋
|
||||
|
||||
**I'm Adam V. and I build software for a living, and sometimes for fun. I love to learn new things and am curious about about the world.**
|
||||
|
|
@ -11,7 +9,6 @@ title: Homepage
|
|||
|
||||
[Resume](/resume_2019.pdf) | PGP: [A466CEE1415C0B9C](/gpg.pub) | [The code for this blog](https://git.vdhsn.com/adam/garden)
|
||||
|
||||
|
||||
This is my attempt at a Digital Garden and public learning space. Things will shift and move over time here. The goal isn't to get traffic to this site, but to learn and grow through writing and and exposing my thoughts to the world.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
---
|
||||
title: Health
|
||||
description: Health related notes. Physical, Mental, Spiritual, Social etc.
|
||||
---
|
||||
|
||||
# Health :heart:
|
||||
|
||||
|
||||
Mental, Physical, Emotional health and wellbeing.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,27 @@
|
|||
---
|
||||
title: Software
|
||||
description: Software I use
|
||||
---
|
||||
|
||||
# Software 'n' stuff :computer:
|
||||
|
||||
This section is all about software related topics
|
||||
|
||||
|
||||
|
||||
Below are some links that I've found useful around the web lately.
|
||||
|
||||
### Kubernetes
|
||||
|
||||
- [Kubernetes in Production: The Ultimate Guide to Monitoring Resource Metrics with Prometheus](https://www.replex.io/blog/kubernetes-in-production-the-ultimate-guide-to-monitoring-resource-metrics)
|
||||
- [K8s Monitor Pod CPU and memory usage with Prometheus](https://itnext.io/k8s-monitor-pod-cpu-and-memory-usage-with-prometheus-28eec6d84729)
|
||||
- [Understanding machine cpu usage](https://www.robustperception.io/understanding-machine-cpu-usage)
|
||||
|
||||
|
||||
### Digital Garden templates
|
||||
|
||||
- [doubleloop digital garden](https://commonplace.doubleloop.net/digital-garden)
|
||||
|
||||
### Tools
|
||||
|
||||
- [Netshoot](https://github.com/nicolaka/netshoot)
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: "Trunk_branches"
|
||||
description: "Usefult organization, communication and problem solving frameworks"
|
||||
date: 2022-03-12T12:42:49-06:00
|
||||
draft: true
|
||||
tags: [management, programming, career]
|
||||
---
|
||||
|
||||
|
||||
### Trunk and Branches Model
|
||||
> Source: [Trunk and Branches on lethain.com](https://lethain.com/trunk-and-branches/)
|
||||
|
||||
### MECE
|
||||
> [MECE Priniple](https://en.wikipedia.org/wiki/MECE_principle)
|
||||
|
||||
|
||||
### Minto Framework
|
||||
> [Minto Framework]()
|
||||
|
||||
### RACI Model
|
||||
> [RACI Model](https://en.wikipedia.org/wiki/Responsibility_assignment_matrix)
|
||||
|
|
@ -1,18 +1,24 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ $description := .Description }}
|
||||
|
||||
<div class="flex h-screen relative">
|
||||
<section
|
||||
class="w-full h-full md:min-w-[400px] md:w-1/4 bg-slate-50 dark:bg-slate-800 border-r border-slate-200 dark:border-slate-700 flex flex-col py-3 overflow-y-auto scroll-area">
|
||||
<a href="{{ .Permalink }}">
|
||||
<h2 class="font-bold mb-5 py-1 pl-12 pr-3 md:px-3">{{ .Title }}</h2>
|
||||
<h2 class="font-bold mb-5 py-1 pl-12 pr-3 md:px-3">
|
||||
{{ if .Content }}
|
||||
Topics
|
||||
{{ else }}
|
||||
{{ .Title }}
|
||||
{{ end }}
|
||||
</h2>
|
||||
</a>
|
||||
<div class="space-y-2.5">
|
||||
<ul class="space-y-2.5">
|
||||
{{ range .Data.Pages -}}
|
||||
<li>
|
||||
<a class="block px-3 py-4 hover:bg-slate-200 dark:hover:bg-slate-700" href="{{ .RelPermalink }}">
|
||||
|
||||
{{ $description := .Params.Description }}
|
||||
{{ $title := .Params.title }}
|
||||
|
||||
{{ with .Params.images }}
|
||||
{{- range first 1 . }}
|
||||
<img class="rounded max-w-full mb-4" src="{{ . }}" alt="{{ $title }}" />
|
||||
|
|
@ -20,16 +26,27 @@
|
|||
{{ end }}
|
||||
<h3 class="text-lg font-semibold mb-0.5">{{ $title }}</h3>
|
||||
<div class="text-sm text-slate-500 dark:text-slate-400 line-clamp-2">
|
||||
{{ $description }}
|
||||
{{ .Summary }}
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
{{ end -}}
|
||||
</div>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<main class="hidden md:grid h-screen place-items-center flex-1">
|
||||
<p class="text-center p-8 text-2xl text-slate-300 dark:text-slate-700">Select a post to read</p>
|
||||
|
||||
<main class="h-screen overflow-y-auto w-full">
|
||||
<div class="px-6 py-20 w-full lg:w-[580px] mx-auto prose dark:prose-invert h-fit prose-img:mx-auto">
|
||||
{{ if .Content }}
|
||||
{{ .Content }}
|
||||
{{ else }}
|
||||
<!-- <h1>{{ .Title }}</h1> -->
|
||||
<p class="text-center p-8 text-2xl text-slate-300 dark:text-slate-700">Select a post to read on the left</p>
|
||||
{{ end}}
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<svg class="h-4 w-4" viewBox="0 0 448 512" fill="none" stroke="white" stroke-width="2"
|
||||
<svg class="h-4 w-4" viewBox="0 0 448 512" fill="none" stroke="currentColor" stroke-width="40"
|
||||
stroke-linecap="round" stroke-linejoin="round" >
|
||||
<!--! Font Awesome Pro 6.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. -->
|
||||
<path d="M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z"/>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
|
@ -43,7 +43,7 @@
|
|||
{{ range .Site.Menus.social }}
|
||||
<li>
|
||||
<a class="px-2 py-1.5 rounded-md text-sm block text-slate-800 dark:text-slate-50 {{ if eq (.URL|absURL) $permalink }} bg-slate-800 text-white dark: {{ else }} hover:bg-slate-200 dark:hover:bg-slate-700 {{ end }}"
|
||||
href="{{ .URL }}" target="_blank" rel="noopener noreferrer">
|
||||
href="{{ .URL }}" target="_blank" rel="me noopener noreferrer">
|
||||
<span class="sr-only">{{ .Name }}</span>
|
||||
{{ if eq .Name "GitHub" }}
|
||||
<span>{{- partial "icon/githubIcon.html" . -}}</span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue