summaryrefslogtreecommitdiff
path: root/app/views/application
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-04-05 23:28:30 -0400
committerDavid Gay <david@davidgay.org>2021-04-05 23:28:30 -0400
commit504513d1b47a8dfc9dccfca7b7113bbfdfbaa21c (patch)
tree7e5a846fbd5b193b9941976c4889879c174300c5 /app/views/application
parent5fdb938b522a14c8f1d1c611a0003ad45850e95f (diff)
Basic FE setup
Diffstat (limited to 'app/views/application')
-rw-r--r--app/views/application/_footer.html.erb7
-rw-r--r--app/views/application/_header.html.erb7
2 files changed, 14 insertions, 0 deletions
diff --git a/app/views/application/_footer.html.erb b/app/views/application/_footer.html.erb
new file mode 100644
index 0000000..d4ba8fb
--- /dev/null
+++ b/app/views/application/_footer.html.erb
@@ -0,0 +1,7 @@
+<footer class="flex justify-center p-2 text-gray-500">
+ <div>
+ Appendix Q is free and open-source software licensed under the AGPL v3+. You can
+ <%= link_to "view the source", "https://github.com/dtgay/appendix-q" %>,
+ <%= link_to "report a bug, or request a feature", "https://github.com/dtgay/appendix-q/issues" %>.
+ </div>
+</footer>
diff --git a/app/views/application/_header.html.erb b/app/views/application/_header.html.erb
new file mode 100644
index 0000000..0b317ad
--- /dev/null
+++ b/app/views/application/_header.html.erb
@@ -0,0 +1,7 @@
+<header class="flex justify-between px-4 py-2">
+ <div>
+ <span class="text-xl">Appendix Q</span>
+ </div>
+ <div>
+ </div>
+</header>