Launchpad buttons now work properly

This commit is contained in:
shockrah 2023-09-21 23:53:04 -07:00
parent 75944355f3
commit 3f2a116c8b
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,7 @@
{{ range .Site.Params.Launchpad }}
<button type="button" class="fade-in-image launchpad-button btn btn-light launchpad-button-text">
<pre style="">{{ printf "%-8s%s" .uri .description }}</pre>
<button type="button" class="fade-in-image launchpad-button btn btn-light">
<a href="{{ .uri }}">
<pre class="launchpad-button-text">{{ printf "%-8s%s" .uri .description }}</pre>
</a>
</button>
{{ end }}

View File

@ -219,6 +219,7 @@ ul.timeline > li:before {
.launchpad-button-text {
font-family: 'Courier New', monospace;
margin: 0.3em;
}