Using resume theme as base :3
This commit is contained in:
BIN
main-site/themes/temper/layouts/partials/.head.html.swp
Normal file
BIN
main-site/themes/temper/layouts/partials/.head.html.swp
Normal file
Binary file not shown.
22
main-site/themes/temper/layouts/partials/education.html
Normal file
22
main-site/themes/temper/layouts/partials/education.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ with .Site.GetPage "/education" }}
|
||||
<h1 class="section-header" id="education">{{.Title}}</h1>
|
||||
<div class="section">
|
||||
<ul>
|
||||
{{ range (.Paginate (.Pages.ByParam "rank")).Pages }}
|
||||
<li style="list-style-type: none;">
|
||||
<a><strong class="bigger">{{.Params.Institution}}</strong></a>
|
||||
{{ if .Params.Degree }}
|
||||
<p class="text-muted">{{.Params.Degree}} acheived {{.Params.When}}</p>
|
||||
{{ end }}
|
||||
{{ if .Params.Certlink }}
|
||||
<a href="{{.Params.Certlink}}">Certificate Link</a>
|
||||
{{ end }}
|
||||
{{ if .Params.Certid }}
|
||||
<p class="text-muted">Certificate id: {{.Params.Certid}}</p>
|
||||
{{ end }}
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
18
main-site/themes/temper/layouts/partials/experience.html
Normal file
18
main-site/themes/temper/layouts/partials/experience.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{ with .Site.GetPage "/experience"}}
|
||||
<h1 class="section-header" id="experience">{{.Title}}</h1>
|
||||
<div class="section">
|
||||
<ul class="timeline">
|
||||
{{ range (.Paginate (.Pages.ByParam "rank")).Pages }}
|
||||
<li>
|
||||
<a>
|
||||
<strong class="bigger">{{.Title}}</strong>
|
||||
<em class="text-muted">@</em>
|
||||
<a class="bigger">{{.Params.Company}}</a>
|
||||
</a>
|
||||
<p class="badge badge-dark float-right media-float">{{.Params.When}}</p>
|
||||
<p>{{.Content}}</p>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ end }}
|
||||
15
main-site/themes/temper/layouts/partials/head.html
Normal file
15
main-site/themes/temper/layouts/partials/head.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<head>
|
||||
|
||||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
|
||||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
||||
<link rel="shortcut icon" type="image/png" href="{{ .Site.BaseURL }}/images/favicon.png">
|
||||
<title>{{.Site.Params.Title}}</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<meta property="og:title" content="{{ .Site.Params.Title }}">
|
||||
<meta property="og:description" content="{{ .Site.Params.description }}">
|
||||
<meta property="og:site_name" content="{{ .Site.Params.name }}">
|
||||
<meta property="og:url" content="{{ .Site.BaseURL }}">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:image" content="/images/ogbanner.jpg">
|
||||
</head>
|
||||
23
main-site/themes/temper/layouts/partials/projects.html
Normal file
23
main-site/themes/temper/layouts/partials/projects.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{{ with .Site.GetPage "/projects" }}
|
||||
<h1 class="section-header" id="projects">{{.Title}}</h1>
|
||||
{{ if .Page.Params.Subtitle }}
|
||||
<p>
|
||||
{{.Page.Params.Subtitle}}
|
||||
{{ if .Page.Params.Gitpage }}
|
||||
<a href="{{.Page.Params.Gitpage}}">
|
||||
<i class="fab fa-gitlab"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
</p>
|
||||
{{ end }}
|
||||
<div class="section">
|
||||
{{ range .Pages }}
|
||||
<div class="card">
|
||||
<a href="{{.Params.Link}}"><h1 class="card-title title-link">{{.Title}}</h1></a>
|
||||
<h6 class="card-subtitle mb-2 text-muted">{{.Params.Slogan}}</h6>
|
||||
<a href="{{.Params.Link}}" class="card-img"><img src="{{.Params.Img}}" class="card-img"></a>
|
||||
<div class="card-body"> {{.Content}} </div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
21
main-site/themes/temper/layouts/partials/socials.html
Normal file
21
main-site/themes/temper/layouts/partials/socials.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{{ if .Site.Params.Gitlab }}
|
||||
<a class="socials" href="{{.Site.Params.Gitlab}}">
|
||||
<i class="fab fa-gitlab"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.Linkedin }}
|
||||
<a class="socials" href="{{.Site.Params.Linkedin}}">
|
||||
<i class="fab fa-linkedin-in"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.Twitch }}
|
||||
<a class="socials" href="{{.Site.Params.Twitch}}">
|
||||
<i class="fab fa-twitch"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ if .Site.Params.Mastodon }}
|
||||
<a class="socials" href="{{.Site.Params.Mastodon}}">
|
||||
<i class="fab fa-mastodon"></i>
|
||||
</a>
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user