diff options
Diffstat (limited to 'Projects/index.html')
| -rw-r--r-- | Projects/index.html | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/Projects/index.html b/Projects/index.html index 3227526..60a88e9 100644 --- a/Projects/index.html +++ b/Projects/index.html @@ -1,12 +1,14 @@ --- layout: default -projects: - - name: dmp - file: dmp.markdown --- -{% for project in page.projects %} - {% capture text %}{% include {{project.file}} %}{% endcapture %} - {{ text | markdownify }} +{% for project in site.projects %} + <div class="col-sm-4 col-xs-6"> + <div align="center"> + <h6 class="h6">{{project.name}}</h1> + </div> + <a href="/Projects/{{project.name}}.html"> + <img src="{{project.thumbnail}}" width=100% height=100% /> + </a> + </div> {% endfor %} - |
