Created
March 26, 2015 10:44
-
-
Save besimhu/52b82dd3d58df1219b05 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
// Page with multiple items called for as articles. | |
<article class="landing-blog"> | |
<section class="blog-list"> | |
<article>1st Blog Post</article> | |
<article>2nd Blog Post</article> | |
<article>3rd Blog Post</article> | |
</section> | |
</article> | |
// Page with multiple items called for as a list. | |
<article class="landing-people"> | |
<section class="people-list"> | |
<ul> | |
<li> | |
<article>Team Member Info</article> | |
</li> | |
<li> | |
<article>Team Member Info</article> | |
</li> | |
<li> | |
<article>Team Member Info</article> | |
</li> | |
</ul> | |
</section> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment