Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c2a275a95 | |||
| 9c0ae949af | |||
| 33a7006c5f | |||
| ae79f2ff15 | |||
| e65b16a8dd | |||
| 2e21862b9a | |||
| d30f0884a1 | |||
| e66b0692c2 | |||
| 763404516a | |||
| cb63eef254 |
6 changed files with 37 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,3 +3,4 @@
|
||||||
resources/
|
resources/
|
||||||
todo.md
|
todo.md
|
||||||
exampleSite/public/
|
exampleSite/public/
|
||||||
|
.env
|
||||||
|
|
|
||||||
|
|
@ -245,3 +245,13 @@ figcaption > p {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#heatmap-caption {
|
||||||
|
color: #888;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
#heatmap-caption {
|
||||||
|
color: #3d4449;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
5
go.mod
Normal file
5
go.mod
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
module forge.alexselimov.com/aselimov/hugo-bearcub
|
||||||
|
|
||||||
|
go 1.26.2
|
||||||
|
|
||||||
|
require forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516000031-0c7f7a685358 // indirect
|
||||||
14
go.sum
Normal file
14
go.sum
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260512033457-620121b50553 h1:9XSeGiKCVd3kJ27hZMYOb8NwsMbr21IfirxXEAQ295E=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260512033457-620121b50553/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513105512-53084c4e6f8f h1:b+OXlKA5AUCt2uSNr/NtQ7e5qN89nlYUoquE4wYy74Q=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513105512-53084c4e6f8f/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513112041-d9784bdbd43d h1:k6zj4ZZWwgUY0pTXFQMMSDivNbF8x5C3YHheSm+lCh4=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513112041-d9784bdbd43d/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513113347-46315d9a6267 h1:Z+LYfP8DE7Rxr9su2QtcL4dSiK7e5gNvLVDCcae21Z4=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260513113347-46315d9a6267/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260515030001-e1941ac77d8c h1:Ke/wZuvIXQTQcHvk9P9jNo6hnRcD87dFtD9lJRo5b2Y=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260515030001-e1941ac77d8c/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260515030329-f5140502fd93 h1:2Hn3xkPm21DeGkj4hIJ0Zt2haqfSHdOu2B5peeETzyw=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260515030329-f5140502fd93/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516000031-0c7f7a685358 h1:NovauVNIvi+6TW41HfUvSpYoOcwIJI9FdlY7f6Snfjc=
|
||||||
|
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516000031-0c7f7a685358/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||||
3
hugo.toml
Normal file
3
hugo.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[module]
|
||||||
|
[[module.imports]]
|
||||||
|
path = 'forge.alexselimov.com/aselimov/hugo-unified-git-activity'
|
||||||
|
|
@ -15,5 +15,8 @@
|
||||||
|
|
||||||
<p><a href="/posts/">All posts →</a></p>
|
<p><a href="/posts/">All posts →</a></p>
|
||||||
|
|
||||||
|
<h2> Activity map</h2>
|
||||||
|
{{ partial "git-heatmap.html" . }}
|
||||||
|
|
||||||
</content>
|
</content>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue