2017-03-13 09:14:02 +00:00
|
|
|
{{ partial "header.html" . }}
|
2018-01-26 18:37:19 +00:00
|
|
|
<body>
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2018-02-03 14:57:23 +00:00
|
|
|
<div id="top"> <!-- Where all the awesome begins -->
|
2017-03-26 05:23:50 +00:00
|
|
|
|
2018-03-25 15:08:39 +00:00
|
|
|
<div class="hero is-{{ .Site.Params.introHeight | default "fullheight" }}">
|
2017-03-26 05:23:50 +00:00
|
|
|
<!-- Possible hero-head not used -->
|
|
|
|
<!-- Super sweet Hero body title -->
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container has-text-centered">
|
|
|
|
<!-- Title and tagline -->
|
2018-03-25 15:55:27 +00:00
|
|
|
<h1 class="bold-title {{ if .Site.Params.fadeIn | default true }}fade-in one{{ end }}">
|
2018-06-27 00:10:46 +00:00
|
|
|
{{ .Site.Params.firstName | default "Introduction" }}.
|
2017-05-05 11:03:05 +00:00
|
|
|
</h1>
|
2018-03-25 15:55:27 +00:00
|
|
|
<h3 class="subtitle is-3 {{ if .Site.Params.fadeIn | default true }}fade-in two{{ end }}">
|
2018-01-27 01:10:03 +00:00
|
|
|
{{ .Site.Params.tagLine }}
|
2017-05-05 11:03:05 +00:00
|
|
|
</h3>
|
2017-03-26 05:23:50 +00:00
|
|
|
<!-- End title and tagline -->
|
|
|
|
<!-- Some social icons -->
|
2018-03-25 15:55:27 +00:00
|
|
|
<div class=" {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
2017-05-05 11:03:05 +00:00
|
|
|
{{ partial "social.html" . }}
|
|
|
|
</div>
|
2017-03-26 05:23:50 +00:00
|
|
|
<!-- End top social icons -->
|
|
|
|
</div>
|
2018-06-11 23:39:40 +00:00
|
|
|
</div>
|
|
|
|
<!-- Hero body title end -->
|
|
|
|
|
2018-03-25 15:55:27 +00:00
|
|
|
<div class="hero-foot {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
2018-06-11 23:39:40 +00:00
|
|
|
{{ partial "nav.html" . }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Done with Hero -->
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<!-- Everything below fades in three! -->
|
2018-03-25 15:55:27 +00:00
|
|
|
<div class="section no-padding {{ if .Site.Params.fadeIn | default true }}fade-in three{{ end }}">
|
2017-03-26 05:23:50 +00:00
|
|
|
|
2017-03-13 09:14:02 +00:00
|
|
|
<!-- Tell them all about it! -->
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ with .Site.GetPage "page" "about" }}
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="section" id="about">
|
|
|
|
<div class="container">
|
2018-06-25 13:03:18 +00:00
|
|
|
<h2 class="title is-2 has-text-centered">{{ .Title }}</h2>
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="columns"><!-- Avatar and about.md side by side except mobile -->
|
2017-07-24 23:48:37 +00:00
|
|
|
{{ if .Site.Params.avatar }}
|
|
|
|
<div class="column is-one-third has-text-centered">
|
2018-06-27 00:10:46 +00:00
|
|
|
<img class="img-responsive avatar" src="{{ .Site.Params.avatar | relURL }}" alt="{{ i18n "index_avatarAlt" . }}">
|
2017-03-26 05:23:50 +00:00
|
|
|
</div>
|
2017-07-24 23:48:37 +00:00
|
|
|
{{ end }}
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="column markdown">
|
2018-06-25 13:03:18 +00:00
|
|
|
{{.Content}}
|
2017-03-26 05:23:50 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-25 13:03:18 +00:00
|
|
|
</div>
|
|
|
|
<!-- End About container-->
|
|
|
|
{{ partial "top-icon.html" . }}
|
|
|
|
</div>
|
|
|
|
<!-- End About section -->
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<div class="container"><hr></div>
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ end }}
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<!-- Now for some cool projects -->
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ partial "projects.html" . }}
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<!-- Let's show some blog posts -->
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ partial "blogsection.html" . }}
|
2017-03-26 05:23:50 +00:00
|
|
|
|
|
|
|
<!-- Let's chat, shall we? -->
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ with .Site.GetPage "page" "contact" }}
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="section" id="contact">
|
|
|
|
<div class="container has-text-centered">
|
2018-06-25 13:03:18 +00:00
|
|
|
<h2 class="title is-2">{{ .Title }}</h2>
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="markdown">
|
2018-06-25 13:03:18 +00:00
|
|
|
{{.Content}}
|
2017-03-26 05:23:50 +00:00
|
|
|
</div>
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2018-01-27 01:10:03 +00:00
|
|
|
{{ if .Site.Params.localTime }}
|
2018-06-27 00:10:46 +00:00
|
|
|
<p>{{ i18n "index_currentTime" . }} <span id='time'></span>.</p>
|
2018-06-09 23:30:15 +00:00
|
|
|
<script type="text/javascript" src="{{ "/js/moment.js" | relURL }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ "/js/moment-timezone.js" | relURL }}"></script>
|
|
|
|
<script type="text/javascript" src="{{ "/js/moment-timezone-with-data-2012-2022.js" | relURL }}"></script>
|
2017-04-20 03:25:35 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
2018-01-27 01:10:03 +00:00
|
|
|
var time = moment().tz("{{ .Site.Params.timeZone }}").format("h:mm A");
|
2017-04-20 03:25:35 +00:00
|
|
|
$('#time').html(time);
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
{{ end }}
|
|
|
|
|
2017-03-26 05:23:50 +00:00
|
|
|
{{ if .Site.Params.email }}
|
|
|
|
<h3 class="subtitle is-3 has-text-centered top-pad"><a href="mailto:{{ .Site.Params.email }}">{{ .Site.Params.email }}</a></h3>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ partial "social.html" . }}
|
2018-06-25 13:03:18 +00:00
|
|
|
</div>
|
|
|
|
<!-- End Contact container -->
|
|
|
|
{{ partial "top-icon.html" . }}
|
|
|
|
</div>
|
|
|
|
<!-- End Contact section -->
|
2017-03-13 09:14:02 +00:00
|
|
|
|
2017-03-26 05:23:50 +00:00
|
|
|
<div class="container"><hr></div>
|
2018-06-25 13:03:18 +00:00
|
|
|
{{ end }}
|
2017-03-13 09:14:02 +00:00
|
|
|
|
|
|
|
<!-- Nice clean finish -->
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
<!-- Footer done! -->
|
2018-06-25 13:03:18 +00:00
|
|
|
</div>
|
|
|
|
<!-- End of fade in three section -->
|
2017-03-26 05:23:50 +00:00
|
|
|
<!-- Where all the awesome ends. Aww. -->
|
2017-07-24 23:48:37 +00:00
|
|
|
</body>
|