@if(count($page->tags) > 0)
<div class="tag-display float right">
- <div class="heading primary-background-light">Page Tags</div>
<table>
- @foreach($page->tags as $tag)
- <tr class="tag">
- <td @if(!$tag->value) colspan="2" @endif><a href="{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}">{{ $tag->name }}</a></td>
- @if($tag->value) <td class="tag-value"><a href="{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}">{{$tag->value}}</a></td> @endif
+ <thead>
+ <tr class="text-left heading primary-background-light">
+ <th colspan="2">Page Tags</th>
</tr>
- @endforeach
+ </thead>
+ <tbody>
+ @foreach($page->tags as $tag)
+ <tr class="tag">
+ <td @if(!$tag->value) colspan="2" @endif><a href="{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%5D') }}">{{ $tag->name }}</a></td>
+ @if($tag->value) <td class="tag-value"><a href="{{ baseUrl('/search/all?term=%5B' . urlencode($tag->name) .'%3D' . urlencode($tag->value) . '%5D') }}">{{$tag->value}}</a></td> @endif
+ </tr>
+ @endforeach
+ </tbody>
</table>
</div>
@endif
@section('head')
<style>
body {
- font-size: 15px;
- line-height: 1;
+ font-size: 14px;
+ line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {
- line-height: 1;
+ line-height: 1.2;
}
table {
width: auto !important;
}
+ .page-content .float {
+ float: none !important;
+ }
+
.page-content img.align-left, .page-content img.align-right {
float: none !important;
clear: both;
display: block;
}
+
+ .tag-display {
+ min-width: 0;
+ max-width: none;
+ display: none;
+ }
+
</style>
@stop
\ No newline at end of file