Skip to content

Commit

Permalink
fix: update meta description (#18)
Browse files Browse the repository at this point in the history
* fix: update meta description

* fix: update go image
  • Loading branch information
shanehull authored Nov 11, 2024
1 parent 34ad446 commit 2236e97
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 59 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-alpine AS builder
FROM golang:1.23-alpine AS builder

WORKDIR /app

Expand Down
12 changes: 0 additions & 12 deletions internal/templates/About.templ

This file was deleted.

37 changes: 0 additions & 37 deletions internal/templates/About_templ.go

This file was deleted.

11 changes: 7 additions & 4 deletions internal/templates/Layout.templ
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ import (
templ head(title string) {
<head>
<title>{title}</title>
<meta name="description" content="Calculate your debt recycling scnenario." />
<meta
name="description"
content="Explore debt recycling scenarios with this customizable calculator. Adjust investment amounts, growth rates, and reinvestment options to see how debt recycling might impact your finances."
>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" >
<meta name="htmx-config"
content={
fmt.Sprintf(
Expand All @@ -19,11 +22,11 @@ templ head(title string) {
middleware.GetInlineStyleNonce(ctx),
)
}
/>
>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/htmx.min.js" integrity="sha384-Y7hw+L/jvKeWIRRkqWYfPcvVxHzVzn5REgzbawhxAuQGwX1XWe70vji+VSeHOThJ" crossorigin="anonymous" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/_hyperscript.min.js" integrity="sha384-+Uth1QzYJsTjnS5SXVN3fFO4I32Y571xIuv53WJ2SA7y5/36tKU1VCutONAmg5eH" crossorigin="anonymous" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js" integrity="sha384-Mx5lkUEQPM1pOJCwFtUICyX45KNojXbkWdYhkKUKsbv391mavbfoAmONbzkgYPzR" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="static/css/style.min.css" />
<link rel="stylesheet" type="text/css" href="static/css/style.min.css" >
<style nonce={ middleware.GetInlineStyleNonce(ctx) }>
.echarts-chart-wrapper {
height: 18rem;
Expand Down
10 changes: 5 additions & 5 deletions internal/templates/layout_templ.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2236e97

Please sign in to comment.