mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 23:09:47 +00:00
Removed dead code, added default parameters, local assets.
This commit is contained in:
parent
65b49aa8c8
commit
8d23938eed
6 changed files with 20 additions and 27 deletions
|
@ -1,3 +1,10 @@
|
|||
## Version 3.3.0 - Mar 25 2018
|
||||
|
||||
- Default parameters implemented so theme renders without custom config parameters
|
||||
- Local assets placed
|
||||
|
||||
*Thank you very much to @paskal and @Hanzei for your important contributions!*
|
||||
|
||||
## Version 3.2.1 - Feb 3 2018
|
||||
|
||||
- Allow highlight theme choice using built-in Chroma and `pygmentsStyle` config
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
|
||||
<div class="section" id="top"><!-- Parent section -->
|
||||
|
||||
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
||||
<div class="container hero {{ if .Site.Params.fadeIn | default true }}fade-in one{{ end }}"><!-- Begin Title -->
|
||||
<h1 class="bold-title is-1">{{ .Site.Params.blogHead | default "Blog" }}</h1>
|
||||
</div><!-- End Title -->
|
||||
|
||||
<!-- Everything below fades in two! -->
|
||||
<div class="section no-padding {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
|
||||
<div class="section no-padding {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}">
|
||||
|
||||
<div class="container"><!-- Begin Nav bar -->
|
||||
{{ partial "nav-list.html" . }}
|
||||
|
|
|
@ -3,18 +3,18 @@
|
|||
|
||||
<div class="section" id="top"><!-- Parent section -->
|
||||
|
||||
<div class="container hero {{ if .Site.Params.fadeIn }} fade-in one {{ end }}"><!-- Begin Title -->
|
||||
<div class="container hero {{ if .Site.Params.fadeIn | default true }}fade-in one{{ end }}"><!-- Begin Title -->
|
||||
<h1 class="bold-title is-1">{{ .Site.Params.blogHead | default "Blog" }}</h1>
|
||||
</div><!-- End Title -->
|
||||
|
||||
<!-- Everything below fades in two! -->
|
||||
<div class="section {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
|
||||
<div class="section {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}">
|
||||
|
||||
<div class="container"><!-- Begin Nav bar -->
|
||||
{{ partial "nav-single.html" . }}
|
||||
</div><!-- End Nav bar -->
|
||||
|
||||
<div class="container {{ if .Site.Params.fadeIn }} fade-in two {{ end }}"><!-- Begin blog title container -->
|
||||
<div class="container {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}"><!-- Begin blog title container -->
|
||||
<h2 class="title is-1 top-pad strong-post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
|
||||
<div class="post-data">
|
||||
{{ .Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} |
|
||||
|
@ -57,7 +57,7 @@
|
|||
|
||||
</div><!-- End blog title container -->
|
||||
|
||||
<div class="container markdown {{ if .Site.Params.fadeIn }} fade-in two {{ end }} top-pad"><!-- Begin blog post content -->
|
||||
<div class="container markdown {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }} top-pad"><!-- Begin blog post content -->
|
||||
{{ .Content }}
|
||||
</div><!-- End blog post content -->
|
||||
|
||||
|
|
|
@ -9,29 +9,29 @@
|
|||
<div class="hero-body">
|
||||
<div class="container has-text-centered">
|
||||
<!-- Title and tagline -->
|
||||
<h1 class="bold-title {{ if .Site.Params.fadeIn }}fade-in one{{ end }}">
|
||||
<h1 class="bold-title {{ if .Site.Params.fadeIn | default true }}fade-in one{{ end }}">
|
||||
Hi, I'm {{ .Site.Params.firstName | default "Introduction" }}.
|
||||
</h1>
|
||||
<h3 class="subtitle is-3 {{ if.Site.Params.fadeIn }} fade-in two{{ end }}">
|
||||
<h3 class="subtitle is-3 {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}">
|
||||
{{ .Site.Params.tagLine }}
|
||||
</h3>
|
||||
<!-- End title and tagline -->
|
||||
<!-- Some social icons -->
|
||||
<div class="{{ if .Site.Params.fadeIn }}fade-in three{{ end }}">
|
||||
<div class=" {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
||||
{{ partial "social.html" . }}
|
||||
</div>
|
||||
<!-- End top social icons -->
|
||||
</div>
|
||||
</div> <!-- Hero body title end -->
|
||||
<!-- Hero foot has nav bar -->
|
||||
<div class="hero-foot {{ if .Site.Params.fadeIn }}fade-in three{{ end }}">
|
||||
<div class="hero-foot {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
||||
<hr>
|
||||
<nav class="nav-center">
|
||||
<a class="nav-item" href="#about">About</a>
|
||||
{{ if .Site.Params.showProjects }}
|
||||
<a class="nav-item" href="#projects">Projects</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.showBlog }}
|
||||
{{ if .Site.Params.showBlog | default true }}
|
||||
<a class="nav-item" href="#blog">Blog</a>
|
||||
{{ end }}
|
||||
<a class="nav-item" href="#contact">Contact</a>
|
||||
|
@ -41,7 +41,7 @@
|
|||
</div><!-- Done with Hero -->
|
||||
|
||||
<!-- Everything below fades in three! -->
|
||||
<div class="section no-padding {{ if .Site.Params.fadeIn }}fade-in three{{ end }}">
|
||||
<div class="section no-padding {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
||||
|
||||
<!-- Tell them all about it! -->
|
||||
<div class="section" id="about">
|
||||
|
|
|
@ -43,16 +43,8 @@
|
|||
{{ if .Site.Params.cacheBuster }}
|
||||
{{ $t := now.Unix }}
|
||||
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css?t={{$t}}">
|
||||
{{range .Site.Params.extraCSSFiles}}
|
||||
<link rel="stylesheet" href="{{.}}?t={{$t}}">
|
||||
{{ end }}
|
||||
{{ else }}
|
||||
|
||||
<link rel="stylesheet" href="css/{{ .Site.Params.themeStyle | default "dark" }}-style.css">
|
||||
{{range .Site.Params.extraCSSFiles}}
|
||||
<link rel="stylesheet" href="{{.}}">
|
||||
{{end}}
|
||||
|
||||
{{ end }}
|
||||
|
||||
<!-- Custom css -->
|
||||
|
@ -61,13 +53,7 @@
|
|||
{{- end }}
|
||||
|
||||
<!-- Icon -->
|
||||
<link rel="shortcut icon"
|
||||
{{ if .Site.Params.faviconFile }}
|
||||
href="{{ .Site.Params.faviconFile }}"
|
||||
{{ else }}
|
||||
href="img/favicon.ico"
|
||||
{{ end }}
|
||||
>
|
||||
<link rel="shortcut icon" href="{{ .Site.Params.faviconFile | default "img/favicon.ico" }}">
|
||||
|
||||
<!-- Google Analytics -->
|
||||
{{ template "_internal/google_analytics_async.html" . }}
|
||||
|
|
BIN
static/img/favicon.ico
Normal file
BIN
static/img/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
Loading…
Reference in a new issue