mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2025-02-05 22:40:01 +00:00
db3bdd9512
Images in static directory were not displaying on single pages within the /projects/ folder. Including of relURL makes them appear.
62 lines
1.8 KiB
HTML
62 lines
1.8 KiB
HTML
{{ partial "header.html" . }}
|
|
|
|
<body>
|
|
|
|
<div class="section" id="top">
|
|
<!-- Parent section -->
|
|
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}">
|
|
<!-- Begin Title -->
|
|
<h1 class="bold-title is-1">{{ .Title }}</h1>
|
|
</div>
|
|
<!-- End Title -->
|
|
|
|
<!-- Everything below fades in two! -->
|
|
<div class="section {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
|
|
|
|
<div class="container">
|
|
<!-- Begin Nav bar -->
|
|
{{ partial "nav-single.html" . }}
|
|
</div>
|
|
<!-- End Nav bar -->
|
|
|
|
<div class="container markdown {{ if .Site.Params.fadeIn }} fade-in two {{ end }} top-pad">
|
|
<!-- Begin content -->
|
|
{{ if .Params.image }}
|
|
<div class="has-text-centered">
|
|
<img src="{{ .Params.image | relURL }}" class="img-responsive">
|
|
</div>
|
|
{{ end }} {{ .Content }}
|
|
</div>
|
|
<!-- End content -->
|
|
|
|
<div class="disqus">
|
|
{{ template "_internal/disqus.html" . }}
|
|
</div>
|
|
|
|
<div class="container has-text-centered top-pad">
|
|
<hr>
|
|
<a href="#top">
|
|
<i class="fa fa-arrow-up"></i>
|
|
</a>
|
|
<hr>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
<!-- End fade in two -->
|
|
</div>
|
|
<!-- End parent section -->
|
|
|
|
<!-- Bitty scrolling links script -->
|
|
<script>
|
|
$('a[href^="{{ .Permalink }}#"]').click(function (e) {
|
|
e.preventDefault();
|
|
var target = this.hash;
|
|
$('html, body').animate({
|
|
scrollTop: $(target).offset().top
|
|
}, 500);
|
|
return false;
|
|
})
|
|
</script>
|
|
|
|
</body>
|