diff --git a/resources/config.edn b/resources/config.edn index 6afb713..3930d1c 100644 --- a/resources/config.edn +++ b/resources/config.edn @@ -65,6 +65,10 @@ :edit-users-title "Select user to edit" ;; title of edit users page :email-prompt "Email address" ;; text of the email widget prompt on edit user page + :file-upload-link-text "You may link to this file using a link of the form" + ;; Text introducing the link to an uploaded file + :file-upload-prompt "File to upload" ;; prompt string for the file upload widget + :file-upload-title "Upload a file" ;; title for the file upload page :is-admin-prompt "Is administrator?" :home-link "Home" ;; text of the home link on the menu :login-label "Log in!" ;; text of the login widget on the login page diff --git a/resources/public/uploads/water.png b/resources/public/uploads/water.png new file mode 100644 index 0000000..e97d1ed Binary files /dev/null and b/resources/public/uploads/water.png differ diff --git a/resources/templates/base.html b/resources/templates/base.html index 754b31d..8d980d8 100644 --- a/resources/templates/base.html +++ b/resources/templates/base.html @@ -6,6 +6,7 @@ + {% block extra-headers %} {% endblock %} @@ -20,6 +21,7 @@