Switch to using Hugo
This commit is contained in:
parent
03328460ae
commit
7caf09852c
29 changed files with 462 additions and 846 deletions
20
layouts/index.html
Normal file
20
layouts/index.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{{ partial "htmlhead" . }}
|
||||
|
||||
<body>
|
||||
{{ partial "navbar" . }}
|
||||
|
||||
<div class="container">
|
||||
<div class="jumbotron">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
<div class="card-columns">
|
||||
{{ range .Site.Data.projects.project }}
|
||||
{{ partial "projectCard" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue