Add header image on the home page

This commit is contained in:
NeilBrommer 2018-06-11 21:42:16 -07:00
parent 7caf09852c
commit 0a8507401c
7 changed files with 44 additions and 11 deletions

View file

@ -1,19 +1,23 @@
{{ partial "htmlhead" . }}
<link href="/css/index.css" rel="stylesheet">
</head>
<body>
{{ partial "navbar" . }}
<div class="container">
<div class="jumbotron">
<h1>{{ .Title }}</h1>
{{ .Content }}
<div id="header" class="text-center">
<div id="headerContent" class="container">
<h1 id="title" class="display-4 font-weight-normal">{{ .Title }}</h1>
<div class="lead"> {{ .Content }} </div>
</div>
</div>
<div class="card-columns">
{{ range .Site.Data.projects.project }}
{{ partial "projectCard" . }}
{{ end }}
</div>
<div class="container">
<div class="card-columns">
{{ range .Site.Data.projects.project }}
{{ partial "projectCard" . }}
{{ end }}
</div>
</div>
</body>