Merge branch 'main' into main

This commit is contained in:
Emruz Hossain 2023-10-07 00:58:20 +06:00 committed by GitHub
commit d9d8fcf94b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
77 changed files with 3460 additions and 3721 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>