.article {
text-align: left;
}
.sidebar-right {
margin-top: 20px;
padding: 0;
}
.markdown-custom p {
font-size: 16px;
letter-spacing: 1px;
line-height: 200%;
padding: 15px;
}
.sidebar-right p {
font-size: 16px;
letter-spacing: 1px;
line-height: 200%;
}
.read {
font-size: 16px;
}
.recent {
margin-top: 20px;
}
.recent h4 {
font-size: 22px;
font-weight: bold;
margin-bottom: 20px;
}
.recent a {
font-size: 12px;
color: #444;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" />
<h2 class="alert alert-info">Template Loop</h2>
<div class="container">
<div class="row">
<div class="col-md-8 blog-post article">
<div class="row">
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>{{blogpost.title}}</h1>
<p class="small text-left">{{blog.formatTimestamp(blogpost.date)}}</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom"></div>
</div>
</div>
<div class="col-md-3 col-md-offset-1">
<div class="sidebar-right">{{sidecontent}}</div>
</div>
</div>
</div>
<hr>
<h2 class="alert alert-success">Rendered Example</h2>
<hr>
<div class="jumbotron">
<div class="container">
<h1>Some Blog</h1>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-8 blog-post article">
<div class="row">
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>A Blog Title 1</h1>
<p class="small text-left">November 1st, 1002</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom text-left">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>
</div>
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>A Blog Title 2</h1>
<p class="small text-left">September 25th, 1002</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom text-left">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>
</div>
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>A Blog Title 3</h1>
<p class="small text-left">August 5th, 1002</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom text-left">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>
</div>
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>A Blog Title 4</h1>
<p class="small text-left">July 5th, 1002</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom text-left">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>
</div>
<div class="col-md-12" ng-repeat="(key, blogpost) in blog.Posts">
<h1>A Blog Title 5</h1>
<p class="small text-left">June 5th, 1002</div>
<div btf-markdown="blogpost.markdown_text_summary" class="markdown-custom text-left">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled</p>
</div>
</div>
</div>
<div class="col-md-3 col-md-offset-1">
<div class="sidebar-right">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard</p><a class="read" href="#">Learn More</a>
<div class="recent">
<h4>Recent Articles</h4>
<p><a href="#">Lorem Ipsum is simply</a>
</p>
<p><a href="#">Lorem Ipsum is Lorem Ipsum is simply</a>
</p>
<p><a href="#">Lorem Ipsum Lorem simply</a>
</p>
</div>
</div>
</div>
</div>
</div>