short.en.html 353 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {{ template "head" . }}
  4. <body>
  5. {{ template "header" }}
  6. {{ template "nav" }}
  7. <main>
  8. <h1>Redirection</h1>
  9. <p>This ID (<code>{{ .ID }}</code>) will redirect to <code>{{ .URL }}</code>.</p>
  10. <button><a href="{{ .URL }}">Yes, take me there »</a></button>
  11. </main>
  12. {{ template "aside" }}
  13. </body>
  14. </html>