! Bulk commit of progression
A lot off issues with the current design make 100% more sense by cutting hugo out of the picture entirely This means we're switching fully to rocket however we're not going to leave behind the work done with hugo, we're just going to migrate it over first
This commit is contained in:
15
frontend/themes/clippable/layouts/collection/baseof.html
Normal file
15
frontend/themes/clippable/layouts/collection/baseof.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
{{- partial "head.html" . -}}
|
||||
<script src="/js/collection.js"></script>
|
||||
<body>
|
||||
<div id="layout">
|
||||
<div class="content">
|
||||
{{- block "main" . -}}{{- end -}}
|
||||
<div class="video-gallery" id="main-container">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
4
frontend/themes/clippable/layouts/collection/single.html
Normal file
4
frontend/themes/clippable/layouts/collection/single.html
Normal file
@@ -0,0 +1,4 @@
|
||||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
<h1 id="title">{{ .Title }}</h1>
|
||||
{{ end }}
|
||||
@@ -34,6 +34,10 @@ html, body, div, tag {
|
||||
border-radius: 1em;
|
||||
}
|
||||
|
||||
a {
|
||||
color:white;
|
||||
}
|
||||
|
||||
.pure-form {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user