update exampleSite

This commit is contained in:
hossainemruz 2020-06-13 00:58:54 +06:00
parent be9ffaf7c5
commit 66df7ac029
28 changed files with 39 additions and 47 deletions

View file

@ -17,7 +17,7 @@
</div>
</div>
<div class="card-body text-justify pt-1 pb-1">
<p>{{ .summary }}</p>
<p>{{ .summary | markdownify }}</p>
<span class="float-right">
{{ if .repo }}
<a

View file

@ -9,7 +9,7 @@
<h4 class="card-title">{{ .name }}</h4>
</div>
<div class="card-body">
<p class="card-text">{{ .summary }}</p>
<p class="card-text">{{ .summary | markdownify }}</p>
</div>
</div>
</div>

View file

@ -4,11 +4,11 @@
<h6><a href="{{ .company.url }}">{{ .company.name }}</a></h6>
<p class="text-muted">{{ .start }} - {{ if .end }} {{ .end }} {{ else }}Present{{ end }}, {{ .company.location }}</p>
</div>
<p>{{ .company.overview }}</p>
<p>{{ .company.overview | markdownify }}</p>
<h6 class="text-muted">Responsibilities:</h6>
<ul class="justify-content-around">
{{ range .responsibilities }}
<li>{{ . }}</li>
<li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</div>