Merge branch 'main' into main
This commit is contained in:
commit
d9d8fcf94b
77 changed files with 3460 additions and 3721 deletions
|
@ -43,11 +43,11 @@
|
|||
</div>
|
||||
<h6>{{ .name }}</h6>
|
||||
{{ if .grade }}
|
||||
<h6><span>{{ .grade.scale }}: </span><span>{{ .grade.achieved }}</span> {{ i18n "out_of" }} <span>{{ .grade.outOf }}</span></h6>
|
||||
<h6 class="text-heading"><span>{{ .grade.scale }}: </span><span>{{ .grade.achieved }}</span> {{ i18n "out_of" }} <span>{{ .grade.outOf }}</span></h6>
|
||||
{{ end }}
|
||||
{{ if .publications }}
|
||||
<div class="publications">
|
||||
<h6 class="text-muted">{{i18n "publications"}}</h6>
|
||||
<h6 class="text-heeading">{{i18n "publications"}}:</h6>
|
||||
<ul>
|
||||
{{ range .publications }}
|
||||
{{ if .url }}
|
||||
|
@ -62,7 +62,7 @@
|
|||
{{ if .takenCourses }}
|
||||
{{ $collapseAfter := .takenCourses.collapseAfter | default 2 }}
|
||||
<div class="taken-courses">
|
||||
<h6 class="text-muted">{{ i18n "taken_courses" }}</h6>
|
||||
<h6 class="text-heading">{{ i18n "taken_courses" }}:</h6>
|
||||
{{ if .takenCourses.showGrades }}
|
||||
{{ $hideScale := .takenCourses.hideScale }}
|
||||
<table>
|
||||
|
@ -98,7 +98,7 @@
|
|||
{{ end }}
|
||||
{{ if .extracurricularActivities }}
|
||||
<div class="extracurricular-activities">
|
||||
<h6 class="text-muted">{{ i18n "extracurricular_activities" }}</h6>
|
||||
<h6 class="text-heading">{{ i18n "extracurricular_activities" }}:</h6>
|
||||
<ul>
|
||||
{{ range .extracurricularActivities }}
|
||||
<li>{{ . | markdownify }}</li>
|
||||
|
|
|
@ -43,11 +43,11 @@
|
|||
</div>
|
||||
<h6>{{ .name }}</h6>
|
||||
{{ if .grade }}
|
||||
<h6><span class="text-muted">{{ .grade.scale }}: </span><span>{{ .grade.achieved }}</span> {{ i18n "out_of"}} <span>{{ .grade.outOf }}</span></h6>
|
||||
<h6><span class="text-heading">{{ .grade.scale }}: </span><span>{{ .grade.achieved }}</span> {{ i18n "out_of"}} <span>{{ .grade.outOf }}</span></h6>
|
||||
{{ end }}
|
||||
{{ if .publications }}
|
||||
<div class="publications">
|
||||
<h6 class="text-muted">{{ i18n "publications"}}</h6>
|
||||
<h6 class="text-heading">{{ i18n "publications"}}:</h6>
|
||||
<ul>
|
||||
{{ range .publications }}
|
||||
{{ if .url }}
|
||||
|
@ -62,7 +62,7 @@
|
|||
{{ if .takenCourses }}
|
||||
{{ $collapseAfter := .takenCourses.collapseAfter | default 2 }}
|
||||
<div class="taken-courses">
|
||||
<h6 class="text-muted">{{ i18n "taken_courses"}}</h6>
|
||||
<h6 class="text-heading">{{ i18n "taken_courses"}}:</h6>
|
||||
{{ if .takenCourses.showGrades }}
|
||||
{{ $hideScale := .takenCourses.hideScale }}
|
||||
<table>
|
||||
|
@ -98,7 +98,7 @@
|
|||
{{ end }}
|
||||
{{ if .extracurricularActivities }}
|
||||
<div class="extracurricular-activities">
|
||||
<h6 class="text-muted">{{ i18n "extracurricular_activities"}}</h6>
|
||||
<h6 class="text-heading">{{ i18n "extracurricular_activities"}}:</h6>
|
||||
<ul>
|
||||
{{ range .extracurricularActivities }}
|
||||
<li>{{ . | markdownify }}</li>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<p>{{ .company.overview | markdownify }}</p>
|
||||
<!-- Add the responsibilities handled at this position -->
|
||||
{{ if $position.responsibilities }}
|
||||
<h6 class="text-muted">{{ i18n "responsibilities" }}</h6>
|
||||
<h6 class="text-heading">{{ i18n "responsibilities" }}</h6>
|
||||
<ul class="justify-content-around">
|
||||
{{ range $position.responsibilities }}
|
||||
<li>{{ . | markdownify }}</li>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="container">
|
||||
<div class="row" id="recent-post-cards">
|
||||
{{ range first $numShow (where (where site.RegularPages.ByDate.Reverse "Type" "posts" ) "Layout" "!=" "search") }}
|
||||
{{ partial "cards/recent-post.html" . }}
|
||||
{{ partial "cards/post.html" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue