Created
February 7, 2017 03:18
-
-
Save JMWebDevelopment/a345c0309dc8c19fc9215f3eade7e496 to your computer and use it in GitHub Desktop.
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
<div class="post-area"> | |
<div class="post-container row small-up-2 medium-up-4 large-up-5"> | |
<div id="post-{{post.id}}" class="post post-{{post.id}} column" ng-repeat="post in posts"> | |
<a href="{{post.link}}"> | |
<img ng-src="{{post.featured_image}}" /> | |
<div class="post-overlay"> | |
<span class="day">{{ post.date | date:"dd" }}</span> | |
<span class="month">{{ post.date | date:"MMMM" }}</span> | |
</div> | |
</a> | |
</div> | |
</div> | |
<archive-load-more></archive-load-more> | |
</div> | |
<button id="load-more" ng-click="loadMorePosts()">{{translations.load_more}}</button> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment