Fix page footer

This commit is contained in:
Oliver Marks 2018-01-27 16:27:55 +00:00
parent 08b932d9af
commit d56eaf0c81
3 changed files with 6 additions and 1 deletions

View File

@ -116,3 +116,7 @@ letsencrypt certonly --webroot -w /var/www/.well-known -d stage.maidstone-hacksp
#+BEGIN_SRC bash
docker exec -t {CONTAINER_NAME} pg_dumpall -c -U postgres > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
#+END_SRC
#+BEGIN_SRC bash
docker exec -t {CONTAINER_ID} pg_dumpall -c -U postgres > dump_`date +%d-%m-%Y"_"%H_%M_%S`.sql
cat dump_27-01-2018_14_26_09.sql | docker exec -i {CONTAINER_ID} psql -U postgres
#+END_SRC

View File

@ -280,7 +280,7 @@ CRISPY_TEMPLATE_PACK = 'bootstrap4'
# STATIC FILE CONFIGURATION
# ------------------------------------------------------------------------------
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root
STATIC_ROOT = str(ROOT_DIR('staticfiles'))
STATIC_ROOT = str(ROOT_DIR('static'))
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
STATIC_URL = '/static/'

View File

@ -8,6 +8,7 @@
}
body {
position:static !important;
max-width: 100%;
}