Skip to content

Instantly share code, notes, and snippets.

@normansolutions
Created January 7, 2014 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save normansolutions/8300037 to your computer and use it in GitHub Desktop.
Save normansolutions/8300037 to your computer and use it in GitHub Desktop.
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Recent Articles <b class="caret"></b></a>
<ul class="dropdown-menu">
@foreach (var postTitle in Storage.GetAllPosts().Where(pub => pub.IsPublished == true).Where(pubDate => pubDate.PubDate <= DateTime.Now).Take(10))
{
<li><a href="@postTitle.AbsoluteUrl">@postTitle.Title</a></li>
}
</ul>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment