summaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-11-14 23:43:10 +0000
committerGreg Roach <fisharebest@gmail.com>2017-11-14 23:43:10 +0000
commit808943be8212320918d3ed1cce9df382d8897d40 (patch)
tree2d831f909aa9444914854b0c86ddc7f4345d272a /resources/views/layouts
parent918ee52f68d90e36d6ceb8eefe481cc1969e8ab3 (diff)
downloadwebtrees-808943be8212320918d3ed1cce9df382d8897d40.tar.gz
webtrees-808943be8212320918d3ed1cce9df382d8897d40.tar.bz2
webtrees-808943be8212320918d3ed1cce9df382d8897d40.zip
Fix #1470 - responsive tables for home page blocks
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/default.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/resources/views/layouts/default.php b/resources/views/layouts/default.php
index 192af8bfc0..62195d73ac 100644
--- a/resources/views/layouts/default.php
+++ b/resources/views/layouts/default.php
@@ -6,6 +6,13 @@
<?= $theme_head ?>
<?= $theme_body_header ?>
+ <div class="alert alert-danger">
+ <div class="d-sm-none">XS</div>
+ <div class="d-none d-sm-block d-md-none">SM</div>
+ <div class="d-none d-md-block d-lg-none">MD</div>
+ <div class="d-none d-lg-block d-xl-none">LG</div>
+ <div class="d-none d-xl-block">XL</div>
+ </div>
<?= $content ?>
<?= $theme_footer_container ?>
@@ -28,7 +35,7 @@
</body>
</html>
-<!-- webtrees: <?= WT_VERSION ?> -->' .
+<!-- webtrees: <?= WT_VERSION ?> -->
<!-- Execution time: <?= I18N::number(microtime(true) - WT_START_TIME, 3) ?> seconds -->
<!-- Memory: <?= I18N::number(memory_get_peak_usage(true) / 1024) ?> KB -->
<!-- SQL queries: <?= I18N::number(Database::getQueryCount()) ?> -->