Compare commits
No commits in common. "aee652e0456fcadeea76c3113f946bd556ccb585" and "e385e4ee4d3c6c888dfd99d0a7d3e1d050c1adde" have entirely different histories.
aee652e045
...
e385e4ee4d
5 changed files with 25 additions and 46 deletions
|
@ -1,11 +0,0 @@
|
|||
function scrollDown() {
|
||||
var scroller = document.getElementById("scroller");
|
||||
var height = scroller.offsetHeight;
|
||||
scroller.scrollBy(0, height);
|
||||
}
|
||||
|
||||
function scrollUp() {
|
||||
var scroller = document.getElementById("scroller");
|
||||
var height = scroller.offsetHeight;
|
||||
scroller.scrollBy(0, -1 * height);
|
||||
}
|
|
@ -153,21 +153,9 @@ header {
|
|||
justify-content: center;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
padding: 2rem;
|
||||
font-size: x-large;
|
||||
|
||||
.down {
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.up {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
i {
|
||||
color: {{ .Site.Params.color.secondary }};
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.totop {
|
||||
|
@ -309,14 +297,6 @@ header {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
:last-child {
|
||||
|
||||
.scroll-indicator.down {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
article {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div id="scroller" class="scroller">
|
||||
<div class="scroller">
|
||||
<section>
|
||||
<div class="profile card">
|
||||
{{ if .Params.image }}
|
||||
|
@ -21,15 +21,14 @@
|
|||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="scroll-indicator down">
|
||||
<i class="icon-angle-down" onclick="scrollDown()"></i>
|
||||
<div class="scroll-indicator">
|
||||
<a href="#">
|
||||
<i class="icon-angle-down"></i>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
{{ range where .Site.RegularPages "Section" "projects"}}
|
||||
<section>
|
||||
<div class="scroll-indicator up">
|
||||
<i class="icon-angle-up" onclick="scrollUp()"></i>
|
||||
</div>
|
||||
<div class="card">
|
||||
{{ if .Params.image }}
|
||||
<div class="image">
|
||||
|
@ -50,8 +49,10 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="scroll-indicator down">
|
||||
<i class="icon-angle-down" onclick="scrollDown()"></i>
|
||||
<div class="scroll-indicator">
|
||||
<a href="#">
|
||||
<i class="icon-angle-down"></i>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
|
|
@ -21,7 +21,7 @@ caption: string
|
|||
{{ $ext := path.Ext $url }}
|
||||
{{ $name := path.Base (replace $url $ext "") }}
|
||||
{{ $dir := path.Dir $url }}
|
||||
{{ $mediaWidthControl := "(min-width: 1240px) 50vw, 70vw" }}
|
||||
{{ $mediaWidthControl := "(min-width: 1240px) 50px, 70vw" }}
|
||||
|
||||
<a href="{{ $url }}">
|
||||
<picture>
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
{{- with resources.Get "js/main.js" | minify | fingerprint }}
|
||||
{{- with resources.Get "js/main.js" }}
|
||||
{{- if eq hugo.Environment "development" }}
|
||||
{{- with . | js.Build }}
|
||||
<script src="{{ .RelPermalink }}"></script>
|
||||
{{- end }}
|
||||
{{- else }}
|
||||
{{- $opts := dict "minify" true }}
|
||||
{{- with . | js.Build $opts | fingerprint }}
|
||||
<script src="{{ .RelPermalink }}" integrity="{{- .Data.Integrity }}" crossorigin="anonymous"></script>
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
Loading…
Reference in a new issue