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

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/projects.html')
-rw-r--r--layouts/partials/projects.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/partials/projects.html b/layouts/partials/projects.html
new file mode 100644
index 0000000..1d654ed
--- /dev/null
+++ b/layouts/partials/projects.html
@@ -0,0 +1,15 @@
+<div class="section">
+ <h1 class="section-title">{{ .Site.Params.title_as.projects }}</h1>
+ {{ range .Site.Data.projects }}
+ <div class="item">
+ <h3 class="item-title">{{ .name }}
+ {{ if .link }}<a href="{{ .link }}">
+ {{ if $.Site.Params.useFontAwesome }}<i class="fas fa-link"></i>
+ {{else}}&#128279;{{ end }}</a>
+ {{ end }}
+ </h3>
+ {{ .company | markdownify }} - {{ .date }}
+ <p>{{ .details }}</p>
+ </div>
+ {{ end }}
+</div> \ No newline at end of file