* QOL Dev changes
Mostly moving things into partials
This commit is contained in:
parent
956c799ada
commit
691c0dcec2
@ -32,37 +32,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{{ with .Site.GetPage "/projects" }}
|
{{- partial "projects.html" . -}}
|
||||||
<h1 class="section-header" id="projects">{{.Title}}</h1>
|
{{- partial "experience.html" . -}}
|
||||||
<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 }}
|
|
||||||
{{ with .Site.GetPage "/experience"}}
|
|
||||||
<h1 class="section-header" id="experience">{{.Title}}</h1>
|
|
||||||
<div class="section">
|
|
||||||
<ul class="timeline">
|
|
||||||
{{ range .Pages }}
|
|
||||||
<li>
|
|
||||||
<a>
|
|
||||||
<strong class="bigger">{{.Title}}</strong>
|
|
||||||
<em class="text-muted">@</em>
|
|
||||||
<a class="bigger">{{.Params.Company}}</a>
|
|
||||||
</a>
|
|
||||||
<p class="float-right">{{.Params.When}}</p>
|
|
||||||
<p>{{.Content}}</p>
|
|
||||||
</li>
|
|
||||||
{{ end }}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
18
themes/resume/layouts/partials/experience.html
Normal file
18
themes/resume/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 .Pages }}
|
||||||
|
<li>
|
||||||
|
<a>
|
||||||
|
<strong class="bigger">{{.Title}}</strong>
|
||||||
|
<em class="text-muted">@</em>
|
||||||
|
<a class="bigger">{{.Params.Company}}</a>
|
||||||
|
</a>
|
||||||
|
<p class="float-right">{{.Params.When}}</p>
|
||||||
|
<p>{{.Content}}</p>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
13
themes/resume/layouts/partials/projects.html
Normal file
13
themes/resume/layouts/partials/projects.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{{ with .Site.GetPage "/projects" }}
|
||||||
|
<h1 class="section-header" id="projects">{{.Title}}</h1>
|
||||||
|
<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 }}
|
@ -147,11 +147,11 @@ a:hover { color: #EAA221; }
|
|||||||
ul.timeline {
|
ul.timeline {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-top: 1emy Wy W;
|
padding-top: 1em;
|
||||||
}
|
}
|
||||||
ul.timeline:before {
|
ul.timeline:before {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
background: #d4d9df;
|
background: #dcdcdc;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 29px;
|
left: 29px;
|
||||||
@ -165,11 +165,11 @@ ul.timeline > li {
|
|||||||
}
|
}
|
||||||
ul.timeline > li:before {
|
ul.timeline > li:before {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
background: white;
|
background: #212121;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border: 3px solid #22c0e8;
|
border: 3px solid #0fc;
|
||||||
left: 20px;
|
left: 20px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
Loading…
Reference in New Issue
Block a user