Add optional deployment-specific footer

This commit is contained in:
Les De Ridder 2018-10-22 22:31:10 +02:00
förälder 826e144621
incheckning f58a6235f4
4 ändrade filer med 8 tillägg och 1 borttagningar

1
.gitignore vendored
Visa fil

@ -13,3 +13,4 @@ yarn-error.log
.env
.phpunit.result.cache
/storage/debugbar
/resources/views/footer.blade.php

File diff suppressed because one or more lines are too long

Visa fil

@ -130,3 +130,7 @@ input.inline-text[type="text"]:focus {
box-shadow: 0 1px 2px 0 #dededf inset;
outline: 0;
}
footer > p + p {
margin-left: 0.5rem;
}

Visa fil

@ -21,6 +21,8 @@
<footer>
<p>Dates and times are {{ Config::get('app.timezone') }}.</p>
@includeIf('footer')
</footer>
</body>
</html>