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

github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/project.html')
-rw-r--r--layouts/partials/project.html13
1 files changed, 8 insertions, 5 deletions
diff --git a/layouts/partials/project.html b/layouts/partials/project.html
index 6270627..2e6f160 100644
--- a/layouts/partials/project.html
+++ b/layouts/partials/project.html
@@ -1,6 +1,9 @@
-<h3 class="mt-4"><i class="fas {{ .Site.Params.projects.icon }}"></i> {{ .Site.Params.projects.title }}</h3>
+<div class="mb-8">
+<h2 class="mt-4">
+ <i class="fas fa-project-diagram"></i> {{ .Site.Params.projects.title }}
+</h2>
{{ range .Site.Params.projects.list }}
-<ul class="list-unstyled">
- <li><a class="text-warning" href="{{ .url }}">{{ .title }}</a> - {{ .description | markdownify }}</li>
-</ul>
-{{ end }} \ No newline at end of file
+<h3 class="mb-1"><a class="text-warning" href="{{ .url }}">{{ .title }}</a></h3>
+<p class="mb-0 ml-1">{{ .description | markdownify }}</p>
+{{ end }}
+</div> \ No newline at end of file