diff options
author | 2015-04-02 11:09:31 +0200 | |
---|---|---|
committer | 2015-04-02 11:09:31 +0200 | |
commit | b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef (patch) | |
tree | ae0ac2aedd349e4e5757200b5017e12f9a2b5b36 /_includes/partials/sponsor.html | |
download | www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.tar.gz www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.tar.bz2 www-b0c622da7c0a8bdabb33d63fd0c2d7c2b9df02ef.zip |
Initial version
Diffstat (limited to '_includes/partials/sponsor.html')
-rw-r--r-- | _includes/partials/sponsor.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/_includes/partials/sponsor.html b/_includes/partials/sponsor.html new file mode 100644 index 0000000..056d14e --- /dev/null +++ b/_includes/partials/sponsor.html @@ -0,0 +1,14 @@ +<div class="row sponsor"> + <div class="col-xs-12 col-md-3 sponsorlogo"> + {% if sponsor.img and sponsor.link %} + <a href="{{ sponsor.link }}"><img src="/assets/img/sponsors/{{ sponsor.img }}" alt="{{ sponsor.name }}" /></a> + {% elsif sponsor.img %} + <img src="/assets/img/sponsors/{{ sponsor.img }}" alt="{{ sponsor.name }}" /> + {% endif %} + </div> + <div class="col-xs-12 col-md-9 sponsortext text-justify"> + <h3>{{ sponsor.name }}</h3> + {{ sponsor.blurb | markdownify }} + </div> +</div> +<hr />
\ No newline at end of file |