Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update meta description #18

Merged
merged 2 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.