micrach/templates/head/static.html

17 lines
660 B
HTML
Raw Normal View History

{{ define "static" }}
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We"
crossorigin="anonymous"
>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous">
</script>
2022-02-28 12:59:50 +03:00
<link rel="icon" href="static/favicon.ico"/>
<link href="static/styles/utils.css" rel="stylesheet">
<link href="static/styles/post-form.css" rel="stylesheet">
{{ end }}