Simplyfing layout

This commit is contained in:
Dennis Eichhorn 2016-05-17 20:14:04 +02:00
parent 7b0574b4c5
commit b07a12012e
2 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ $footerView->setPage(1);
$accounts = $this->getData('accounts'); $accounts = $this->getData('accounts');
?> ?>
<section class="box"> <div class="box">
<table class="table"> <table class="table">
<caption><?= $this->l11n->lang['Profile']['Profiles']; ?></caption> <caption><?= $this->l11n->lang['Profile']['Profiles']; ?></caption>
<thead> <thead>
@ -48,4 +48,4 @@ $accounts = $this->getData('accounts');
<tr><td colspan="3" class="empty"><?= $this->l11n->lang[0]['Empty']; ?> <tr><td colspan="3" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</section> </div>

View File

@ -21,7 +21,7 @@ $account = $this->getData('account');
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();
?> ?>
<section itemscope itemtype="http://schema.org/Person" class="box w-33"> <section itemscope itemtype="http://schema.org/Person" class="box w-33">
<h1><?= $this->l11n->lang['Profile']['Profile']; ?></h1> <header><h1><?= $this->l11n->lang['Profile']['Profile']; ?></h1></header>
<div class="inner"> <div class="inner">
<!-- @formatter:off --> <!-- @formatter:off -->
<table class="list"> <table class="list">
@ -75,7 +75,7 @@ echo $this->getData('nav')->render();
</div> </div>
</section> </section>
<section class="box w-100"> <div class="box w-100">
<table class="table"> <table class="table">
<caption><?= $this->l11n->lang['Profile']['Media']; ?></caption> <caption><?= $this->l11n->lang['Profile']['Media']; ?></caption>
<thead> <thead>
@ -99,4 +99,4 @@ echo $this->getData('nav')->render();
<tr><td colspan="4" class="empty"><?= $this->l11n->lang[0]['Empty']; ?> <tr><td colspan="4" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
<?php endif; ?> <?php endif; ?>
</table> </table>
</section> </div>