Skip to content

Instantly share code, notes, and snippets.

@gallochris
Created April 27, 2017 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gallochris/a583994674eee7426896040e98de74d2 to your computer and use it in GitHub Desktop.
Save gallochris/a583994674eee7426896040e98de74d2 to your computer and use it in GitHub Desktop.
<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>
@stefanisarie
Copy link

On line 8, you will need to close the double curly brackets for the "src" attribute:
<img src="{{ highrise.image }}" alt="{{ highrise.name }}" /></a>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment