Created
January 13, 2015 06:21
Dynamically outputting/creating html pages for each "project" on a portfolio site
This file contains hidden or 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
<% p = locals[:project] %> | |
<div class="l-wrapper"> | |
<div class="l-content"> | |
<h2><%= p[:title] %></h2> | |
<%= p[:description] %> | |
<p class="highlight">Key responsibilities:</p> | |
<ul class="itemised-list"> | |
<%= p[:responsibilities] %> | |
</ul> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment