You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
% layout 'standard', title => 'Dashboard', sb_active => 'dashboard';
|
|
|
|
<nav aria-label="breadcrumb" class="mt-3 mb-3">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<%= $c->url_for( 'show_dashboard' ) %>">Dashboard</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page"><%= $blog->domain->name %></li>
|
|
</ol>
|
|
</nav>
|
|
|
|
% if ( $blog ) {
|
|
<h3 class="h3 mt-5 mb-3">My Websites</h3>
|
|
<table style="border: 1px solid #ccc" class="table mb-5">
|
|
<tbody>
|
|
<tr>
|
|
<th class="text-nowrap">Domain</th>
|
|
<th class="text-nowrap">Status Link</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><a href="https://<%= $blog->domain->name %>"><%= $blog->domain->name %></a></td>
|
|
<td><a href="<%= $c->url_for( 'show_dashboard_blog', { id => $blog->id } ) %>">Manage Blog</a></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
% }
|
|
|
|
% if ( $blog_posts ) {
|
|
<h3 class="h3 mt-5 mb-3">My Posts</h3>
|
|
<table style="border: 1px solid #ccc" class="table mb-5">
|
|
<tbody>
|
|
<tr>
|
|
<th class="text-nowrap">Title</th>
|
|
<th class="text-nowrap">Date</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
% for my $post ( @{$blog_posts} ) {
|
|
<tr>
|
|
<td><a href="<%= $c->url_for( 'show_dashboard_blog', { id => $blog->id } ) %>"><%= $post->headers->{title} %></a></td>
|
|
<td><a href="<%= $c->url_for( 'show_dashboard_blog', { id => $blog->id } ) %>"><%= $post->headers->{date} %></a></td>
|
|
</tr>
|
|
% }
|
|
</tbody>
|
|
</table>
|
|
% }
|
|
|
|
|