The repo tracks work progress for ura.design website redesign
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
<!DOCTYPE html>
< html data-theme = "light" lang = "{{ .Site.Language }}" itemscope itemtype = "http://schema.org/WebPage" >
< head >
{{ partial "head.html" . }}
< / head >
< body class = "d-flex flex-column min-vh-100" >
< a class = "screen-reader-text" href = "#content" > Skip to content< / a >
< button id = "theme-toggle" data-bs-toggle = "tooltip" data-bs-placement = "right" data-bs-title = "Toggle High Contrast" class = "acctoggle" > < i class = "fa-solid fa-circle-half-stroke" > < / i > < / button >
{{ partial "header.html" . }}
< div id = "content" class = "content" >
{{ block "main" . }}{{ end }}
< / div >
{{ block "footer" . }}
{{ partial "footer.html" . }}
{{ end }}
< script >
const tooltipTriggerList = document.querySelectorAll('[data-bs-toggle="tooltip"]')
const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl))
< / script >
< / body >
< / html >