Created
June 14, 2018 23:30
-
-
Save lukenetti3/c41ea15dc9090715f710aaa05bbd8819 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
<% include ./partials/header.ejs %> | |
<div class="ui text container main center aligned"> | |
<h2 class="title"><a href="/" ><i class="fas fa-arrow-circle-left fa-sm"></i></a><%= book.object.title %></h2> | |
<div class="ui stackable two column grid"> | |
<div class="column"> | |
<div class="ui segment center aligned"> | |
<img class="ui medium bordered centered image" src="<%= book.object.metadata.image.imgix_url %>"> | |
</div> | |
</div> | |
<div class="column"> | |
<div class="ui segment center aligned"> | |
<h4>Description</h4> | |
<p id="comments"><%- book.object.metadata.comments %></p> | |
<a href="<%= book.object.metadata.website%>" target="_blank" class="ui inverted orange button"> | |
Buy<i class="amazon icon big" id="buy"></i></a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<% include ./partials/footer.ejs %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment