ref: 3445973c39a322ed5a9a297effec4a50bb00bcdf
include/header.html
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | {{ define "header" }}
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="x-ua-compatible" content="ie=edge">
        <title>Smithy</title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link rel="stylesheet" href="{{ css }}" />
    </head>
    <body>
        <nav class="navbar navbar-expand navbar-light bg-light fixed-top">
            <a class="navbar-brand" href="/">Smithy</a>
            <div class="collapse navbar-collapse" id="navbarSupportedContent">
                <ul class="navbar-nav mr-auto">
                    <li class="nav-item">
                    <a class="nav-link" href="/">Projects</a>
                    </li>
                </ul>
            </div>
        </nav>
        <div class="container-fluid">
{{ end }}
 |