Sha256: 1792992f78b6f76a935afb011d7d13f3bb246d8de8f6918e61411b4649c7960b

Contents?: true

Size: 1.97 KB

Versions: 4

Compression:

Stored size: 1.97 KB

Contents

<!-- Title System -->
<% phc_title "Blog" %>
<% phc_title_tagline "PHCNetworks News & Information" %>
<!-- Title System -->

<!-- Page Header -->
<section class="page-header dark page-header-xs">
	<div class="container">
		<h1><%= yield(:phc_title) %> <small><%= yield(:phc_title_tagline) %></small></h1>
		<ol class="breadcrumb">
			<li><a href="#">Home</a></li>
			<li><a href="#">Blog</a></li>
			<li class="active">Left Sidebar</li>
		</ol>
	</div>
</section>
<!-- Page Header -->

<!-- Page Content -->
<section>
	<div class="container">
		<div class="row">

			<!-- Left Sidebar -->
			<div class="col-md-3 col-sm-3">
			</div>
			<!-- Left Sidebar -->

			<!-- Blog List -->
			<div class="col-md-9 col-sm-9">
				<% @article_index.each do |article_index| %>
					<div class="blog-post-item">
					
						<% if article_index.pstimage? %>
							<figure class="margin-bottom-20">
								<%= image_tag article_index.pstimage_url, class: "img-responsive" %>
							</figure>
						<% end %>

						<h2><%= article_index.psttitle %></h2>

						<ul class="blog-post-info list-inline">
							<li>
								<a href="#">
									<i class="fa fa-clock-o"></i> 
									<span class="font-lato"><%= article_index.created_at %></span>
								</a>
							</li>
							<li>
								<a href="#">
									<i class="fa fa-comment-o"></i> 
									<span class="font-lato">0 Comments</span>
								</a>
							</li>
							<li>
								<i class="fa fa-folder-open-o"></i> 
								<a class="category" href="#">
									<span class="font-lato">Design</span>
								</a>
								<a class="category" href="#">
									<span class="font-lato">Photography</span>
								</a>
							</li>
							<li>
								<a href="#">
									<i class="fa fa-user"></i> 
									<span class="font-lato">BradPotts</span>
								</a>
							</li>
						</ul>
						<p><%= truncate(article_index.psttext, :length => 80) %></p>
					</div>
				<% end %>
			</div>
			<!-- Blog List -->

		</div>
	</div>
<section>
<!-- Page Content -->

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
phcpresspro-5.5.8 app/views/phcpresspro/frontend/articles/index.html.erb
phcpresspro-5.5.7 app/views/phcpresspro/frontend/articles/index.html.erb
phcpresspro-5.5.6 app/views/phcpresspro/frontend/articles/index.html.erb
phcpresspro-5.5.5 app/views/phcpresspro/frontend/articles/index.html.erb