Initial Go project structure; added some styles w/ SASS via Grunt

This commit is contained in:
2022-11-25 13:33:27 -05:00
parent 5581f0de90
commit 8c7d2fd026
13 changed files with 3338 additions and 1 deletions

16
views/layout/header.html Normal file
View File

@ -0,0 +1,16 @@
{{ define "layout_header" }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .title }}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css">
<link rel="stylesheet" href="/css/nardah.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
</head>
<body>
{{ template "navbar" . }}
{{ end }}