ref: e4b24bd9b86f91e590ca0df270d249039a3503b2
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 }} |