diff options
Diffstat (limited to 'pages/create.gohtml')
| -rw-r--r-- | pages/create.gohtml | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/pages/create.gohtml b/pages/create.gohtml index 5d402cb..d50582a 100644 --- a/pages/create.gohtml +++ b/pages/create.gohtml @@ -7,19 +7,26 @@ <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="icon" href="data:,"/> <title>delayed.link: created</title> + {{ template "style" . }} </head> <body> -<p> - <a href="/l/{{.Id}}">This link will unlock at {{.OpensFrom}}</a> -</p> -<p> - This will occur in approximately {{ .MinutesLeft }} minute{{ if gt .MinutesLeft 1 }}s{{end}}. -</p> -<p> - It will be able to be opened {{ .OpensLeft }} time{{ if gt .OpensLeft 1 }}s{{end}}. -</p> -<p> - This page is completely ephemeral. Once you close it, you cannot access the link again. -</p> +{{ template "header" . }} +<main> + <div> + <a href="/l/{{.Id}}">This link will unlock at {{.OpensStr}}</a> + </div> + <div> + It will occur in approximately {{ .MinutesLeft }} minute{{ if gt .MinutesLeft 1 }}s{{end}}. + </div> + <div> + It can be opened {{ .OpensLeft }} time{{ if gt .OpensLeft 1 }}s{{end}}. + </div> + <div> + Be mindful embedding services might take visits off the counter. + </div> + <div> + This page is completely ephemeral. Once you close it, you cannot access the link again. + </div> +</main> </body> </html>
\ No newline at end of file |
