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

github.com/xaviablaza/hugo-lodi-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Ablaza <xlablaza@gmail.com>2017-10-16 11:59:13 +0300
committerXavi Ablaza <xlablaza@gmail.com>2017-10-16 11:59:13 +0300
commit8929be17df083612273544dc897d67ed87c4b84f (patch)
treebd44c5f3bd7b522aef611c809bb8a416234a2616
parent411295916ba7fbb66a7bd441aa0bf73530496d57 (diff)
Wired case studies section to content folder
-rw-r--r--layouts/partials/case_studies.html37
1 files changed, 10 insertions, 27 deletions
diff --git a/layouts/partials/case_studies.html b/layouts/partials/case_studies.html
index 7a98525..de82f15 100644
--- a/layouts/partials/case_studies.html
+++ b/layouts/partials/case_studies.html
@@ -1,37 +1,20 @@
<section data-scroll-index="2">
<div class="case-studies">
<div class="header">
- <h1 class="title">Case Studies</h1>
- <h2 class="subtitle">Selected Works</h2>
+ <h1 class="title">{{ .Site.Params.case_studies.Title }}</h1>
+ <h2 class="subtitle">{{ .Site.Params.case_studies.Subtitle }}</h2>
</div>
<div class="case-studies-wrapper">
+ {{ .Content }}
+ {{ range .Pages }}
<div class="case-study-item">
- <a href="http://alexiscollado.com/cope.html"><img src="{{ .Site.BaseURL }}img/cope.jpg" alt=""></a>
- <h4>Cope iOS App</h4>
- <h5>MOBILE APP DESIGN</h5>
- <p>Cope is a mobile app that allows mental health help seekers
- track their symptoms and medication. I helped them create a minimum
- viable product for testing.</p>
- <a href="http://alexiscollado.com/cope.html" class="read-more">Read Me</a>
- </div>
- <div class="case-study-item">
- <a href="http://alexiscollado.com/360pro.html"><img src="{{ .Site.BaseURL }}img/360.jpg" alt=""></a>
- <h4>360 Pro Tracker</h4>
- <h5>WEB APP DESIGN</h5>
- <p>The 360 Pro Tracker is a performance tracking system for
- the 360 Pro gym. It tracks an athlete’s statistics and calculates his or
- her pro score.</p>
- <a href="http://alexiscollado.com/360pro.html" class="read-more">Read Me</a>
- </div>
- <div class="case-study-item">
- <a href="http://alexiscollado.com/tedx.html"><img src="{{ .Site.BaseURL }}img/tedx.jpg" alt=""></a>
- <h4>TEDxADMU Website</h4>
- <h5>WEB DESIGN</h5>
- <p>The TEDxADMU website was a project for the Ateneo Junior
- Marketing Association. It's a project where I helped them reach a 66.8%
- conversion rate from scratch.</p>
- <a href="http://alexiscollado.com/tedx.html" class="read-more">Read Me</a>
+ <a href="{{ .URL }}"><img src="img/{{ .Params.thumbnail }}" alt=""></a>
+ <h4>{{ .Title }}</h4>
+ <h5>{{ .Params.subtitle }}</h5>
+ <p>{{ .Description }}</p>
+ <a href="{{ .URL }}" class="read-more">Read Me</a>
</div>
+ {{ end }}
</div>
</div>
</section>