|
|
|
|
@ -18,19 +18,19 @@ |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
% if ( $person->blogs >= 1 ) { |
|
|
|
|
<h3 class="h3 mt-5 mb-3">My Websites</h3> |
|
|
|
|
<h3 class="h3 mt-3 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> |
|
|
|
|
<th class="text-nowrap">Blog Manager</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
% for my $blog ( $person->blogs ) { |
|
|
|
|
<tr> |
|
|
|
|
<td><a target="_blank" 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> |
|
|
|
|
<td><a class="btn btn-sm btn-primary" href="<%= $c->url_for( 'show_dashboard_blog', { id => $blog->id } ) %>">Manage Blog</a></td> |
|
|
|
|
</tr> |
|
|
|
|
% } |
|
|
|
|
</tbody> |
|
|
|
|
|