From 278c1461e333cc7c0d63d7abaf4a35a6ba64fc69 Mon Sep 17 00:00:00 2001
From: alexanderdavide <alexeble1998@gmail.com>
Date: Thu, 03 Mar 2022 18:40:21 +0000
Subject: [PATCH] feat: title case portfolio headings
---
layouts/portfolio/list.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/layouts/portfolio/list.html b/layouts/portfolio/list.html
index 12fede9..5723384 100644
--- a/layouts/portfolio/list.html
+++ b/layouts/portfolio/list.html
@@ -9,7 +9,7 @@
{{ end }}"
>
- <h2 class="portfolio__title">{{ .title }}</h2>
+ <h2 class="portfolio__title">{{ title .title }}</h2>
{{ range $i, $p := .portfolioitem }}
<div class="portfolio">
{{ if .image }}
@@ -37,7 +37,7 @@
{{ end }}"
>
- <h2>{{ .name | markdownify }}</h2>
+ <h2>{{ title .name | markdownify }}</h2>
<div class="info">
{{ if .status }}
<em class="fas fa-flag-checkered"></em>
--
Gitblit v1.10.0