Created
October 10, 2015 16:19
-
-
Save amielucha/dcc2a496300da58b797a to your computer and use it in GitHub Desktop.
AngularJS ♥ WordPress Tutorial part 10 #tutorial
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
<h2>Item:</h2> | |
<section> | |
<article class="well" ng-repeat="post in posts"> | |
<header> | |
<h1 ng-bind-html="post.title.rendered"> | |
{{post.title.rendered}} | |
</h1> | |
</header> | |
<div class="post-content" ng-bind-html="post.excerpt.rendered"> | |
{{post.excerpt.rendered}} | |
</div> | |
</article> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment