aboutsummaryrefslogtreecommitdiff
path: root/app/views/snippets
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-18 02:07:33 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-18 02:07:33 -0400
commit5452369c8c4af48254d331ed3bbe3f79c489e665 (patch)
tree3a8724e85b9e3e47f4bae1a8e7ed9ebe68a71246 /app/views/snippets
parent6e8bedd4551edaaa50b628d4648a7b7b95351309 (diff)
downloadthedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.tar.gz
thedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.tar.bz2
thedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.zip
app/model/Theme: Add dark theme
Diffstat (limited to 'app/views/snippets')
-rw-r--r--app/views/snippets/stylesheets.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/views/snippets/stylesheets.php b/app/views/snippets/stylesheets.php
index 9449c8a..45f9a27 100644
--- a/app/views/snippets/stylesheets.php
+++ b/app/views/snippets/stylesheets.php
@@ -1 +1,5 @@
<link rel="stylesheet" href="/css/tdro.css">
+
+<?php if ($theme->dark()) { ?>
+<link rel="stylesheet" href="/css/tdro-dark.css">
+<?php } ?>