Sha256: 9bc094eb7b361083c220f85945ee5bbd213980ba835879d45e809b11b6e33f7d

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

<!-- Title System -->
<% phc_title "Article Manager" %>
<% phc_title_tagline "Article Index" %>
<!-- Title System -->

<!-- Page Header -->
<div class="row wrapper border-bottom white-bg page-heading">

</div>
<!-- Page Header -->

<!-- Page Content -->
<div class="wrapper wrapper-content animated fadeInRight">

	<div class="row">
		<div class="col-lg-12">

			<div class="ibox float-e-margins">

				<div class="ibox-title">
					<h5><%= yield(:phc_title_tagline) %></h5>
					<div class="ibox-tools">
						<a class="collapse-link">
							<i class="fa fa-chevron-up"></i>
						</a>
						<a class="close-link">
							<i class="fa fa-times"></i>
						</a>
					</div>
				</div>

				<div class="ibox-content">
					<div class="table-responsive">

						<table class="table table-striped table-bordered table-hover dataTables-example">
							<thead>
								<tr>
									<th>Title</th>
									<th>Text Preview</th>
									<th>Article Status</th>
									<th></th>
								</tr>
							</thead>
							<tbody>
								<% @article_index.each do |article_index| %>
									<tr>
										<td><%= article_index.psttitle %></td>
										<td><%= truncate(article_index.psttext, :length => 80) %></td>
									</tr>
								<% end %>
							</tbody>
						</table>

					</div>
				</div>

			</div>

		</div>
	</div>

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcpresspro-5.5.1 app/views/phcpresspro/frontend/articles/index.html.erb
phcpresspro-5.5.0 app/views/phcpresspro/frontend/articles/index.html.erb