|
@@ -29,26 +29,23 @@
|
|
|
|
|
|
{{ if eq $page.Params.view 0 }}
|
|
{{ if eq $page.Params.view 0 }}
|
|
|
|
|
|
- <div id="container-projects" class="isotope">
|
|
|
|
- <ul class="fa-ul" style="position: relative">
|
|
|
|
-
|
|
|
|
|
|
+ <div id="container-projects" class="row isotope">
|
|
{{ range where $.Data.Pages "Type" "project" }}
|
|
{{ range where $.Data.Pages "Type" "project" }}
|
|
- <li class="project-item isotope-item {{ delimit .Params.tags " " }}">
|
|
|
|
|
|
+ <div class="col-md-12 project-item isotope-item {{ delimit .Params.tags " " }}" itemscope itemtype="http://schema.org/CreativeWork">
|
|
|
|
+ <i class="fa fa-files-o pub-icon" aria-hidden="true"></i>
|
|
|
|
+
|
|
<span class="project-title">
|
|
<span class="project-title">
|
|
{{ if .Content }}
|
|
{{ if .Content }}
|
|
<a href="{{ .Permalink }}">
|
|
<a href="{{ .Permalink }}">
|
|
{{ else }}
|
|
{{ else }}
|
|
{{ with .Params.external_link }}<a href="{{ . }}" target="_blank">{{ end }}
|
|
{{ with .Params.external_link }}<a href="{{ . }}" target="_blank">{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
- <i class="fa-li fa fa-files-o pub-icon" aria-hidden="true"></i>
|
|
|
|
{{ .Title }}
|
|
{{ .Title }}
|
|
{{ if .Content }}</a>{{ else }}{{ with .Params.external_link }}</a>{{ end }}{{ end }}
|
|
{{ if .Content }}</a>{{ else }}{{ with .Params.external_link }}</a>{{ end }}{{ end }}
|
|
</span>
|
|
</span>
|
|
{{ with .Params.summary }}<p class="project-summary">{{ . | markdownify }}</p>{{ end }}
|
|
{{ with .Params.summary }}<p class="project-summary">{{ . | markdownify }}</p>{{ end }}
|
|
- </li>
|
|
|
|
|
|
+ </div>
|
|
{{ end }}
|
|
{{ end }}
|
|
-
|
|
|
|
- </ul>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{ else }}
|
|
{{ else }}
|