Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/aafu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2021-02-25 09:09:50 +0300
committerDarshan Baral <darshanbaral@gmail.com>2021-02-25 09:09:50 +0300
commitc83f8084501295f9b43ad36187d9d8e5e0dba36f (patch)
tree2d124b22601b8543feb99df6cb60dcf4d5097513
parentd742691493cdc0696037e2d0eb9ff5a4dc625ffc (diff)
updates to work with new config
-rw-r--r--layouts/partials/accordion/education.html4
-rw-r--r--layouts/partials/accordion/experience.html4
-rw-r--r--layouts/partials/accordion/supportingPartials/addTitle.html4
-rw-r--r--layouts/partials/social.html2
4 files changed, 7 insertions, 7 deletions
diff --git a/layouts/partials/accordion/education.html b/layouts/partials/accordion/education.html
index ade47be..463c8c8 100644
--- a/layouts/partials/accordion/education.html
+++ b/layouts/partials/accordion/education.html
@@ -2,10 +2,10 @@
<dl>
<dt>{{ .degree }}</dt>
<dd class="mb-0 ml-3">{{ .dates }} &middot; {{ .college }}</dd>
- {{ if .thesis_link }}
+ {{ if .thesis_url }}
<dd class="mb-0 ml-4">
Thesis:
- <a href="{{ .thesis_link }}"
+ <a href="{{ .thesis_url }}"
><i>{{ .thesis_title }}</i></a
>
</dd>
diff --git a/layouts/partials/accordion/experience.html b/layouts/partials/accordion/experience.html
index 090e8e8..7bfa8af 100644
--- a/layouts/partials/accordion/experience.html
+++ b/layouts/partials/accordion/experience.html
@@ -6,8 +6,8 @@
<dd class="mb-0 ml-3">
<span class="markdownify">{{ .dates | markdownify }}</span>
&middot;
- {{ if .link }}
- <a href="{{ .link }}">{{ .company }}</a>
+ {{ if .url }}
+ <a href="{{ .url }}">{{ .company }}</a>
{{ else }}
{{ .company }}
{{ end }}
diff --git a/layouts/partials/accordion/supportingPartials/addTitle.html b/layouts/partials/accordion/supportingPartials/addTitle.html
index 1c05bb4..76a7799 100644
--- a/layouts/partials/accordion/supportingPartials/addTitle.html
+++ b/layouts/partials/accordion/supportingPartials/addTitle.html
@@ -1,6 +1,6 @@
{{ if (eq .ind "title") }}
-{{ if (index .all `link`) }}
-<a href="{{ index .all `link` }}">
+{{ if (index .all `url`) }}
+<a href="{{ index .all `url` }}">
<em>
{{- index .all .ind -}}
{{- cond (eq (substr (index .all .ind) -1 1) ".") "" "." -}}
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 5234a74..b714416 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -5,7 +5,7 @@
{{ range.Site.Params.social.list }}
<div style="height:45px; width:45px;">
<a href="{{ .url }}">
- <i class="zoomlink mt-1 {{ .class }} {{ .icon }}"></i>
+ <i class="zoomlink mt-1 {{ .icon }}"></i>
</a>
</div>
{{ end }}