-
-
Save gallochris/a583994674eee7426896040e98de74d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="appgroup"> | |
<a name="Highrise"></a> | |
<h2><a href="#Highrise">Highrise</a></h2> | |
{% for highrise in site.data.highrises %} | |
<div class="app"> | |
<a href="{{ highrise.link }}" target="_blank"> | |
<img src="{{ highrise.image" alt="{{ highrise.name }}" /></a> | |
<p><a href="{{ highrise.link }}" target="_blank">{{ highrise.name }}</a></p> | |
{{ highrise.description }} | |
</div> | |
{% endfor %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On line 8, you will need to close the double curly brackets for the "src" attribute:
<img src="{{ highrise.image }}" alt="{{ highrise.name }}" /></a>