diff --git a/resources/public/css/main.css b/resources/public/css/main.css deleted file mode 100644 index 0b3f754..0000000 --- a/resources/public/css/main.css +++ /dev/null @@ -1,63 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Raleway); -body { - font-family: Raleway, arial; - margin: 0; - background: #09f; - height: calc(100vh - 8rem); - margin-top: 8rem; -} -header { - display: flex; - justify-content: space-between; - align-items: center; - background-color: #6c3; - position: fixed; - top: 0; - left: 0; - right: 0; -} -header > a { - margin: 1rem; -} -header > a > img { - height: 3rem; -} -header ul { - display: flex; - justify-content: flex-end; - list-style: none; - padding: 0; - margin: 0; -} -header ul a { - display: block; - margin: 1rem; - padding: 1rem; - color: white; - text-decoration: initial; -} -header ul a:hover { - background-color: white; - color: #6c3; -} -main { - max-width: 800px; - margin: 3rem auto; -} -footer { - text-align: center; -} - -.title-welcome { - text-align: center; - color: #6c3; -} - -.logo-welcome { - text-align: center; -} - -.logo-welcome img { - width: 20rem; - margin: 4rem auto; -} diff --git a/resources/public/img/tadam.svg b/resources/public/img/tadam.svg deleted file mode 100644 index 8efd814..0000000 --- a/resources/public/img/tadam.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/public/js/main.js b/resources/public/js/main.js deleted file mode 100644 index b082f22..0000000 --- a/resources/public/js/main.js +++ /dev/null @@ -1,3 +0,0 @@ -document.addEventListener('DOMContentLoaded', () => { - -}); diff --git a/resources/templates/layouts/base.html b/resources/templates/layouts/base.html deleted file mode 100644 index 3d3ba43..0000000 --- a/resources/templates/layouts/base.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - {% block title %}{% endblock %} | Tadam Framework - - -
- - brand - - -
-
- {% block content %}{% endblock %} -
- - - diff --git a/resources/templates/public/404.html b/resources/templates/public/404.html deleted file mode 100644 index 3c7952a..0000000 --- a/resources/templates/public/404.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "layouts/base.html" %} - -{% block title %} -404 -{% endblock %} - -{% block content %} -

404

-{% endblock %} diff --git a/resources/templates/public/welcome.html b/resources/templates/public/welcome.html deleted file mode 100644 index 033d714..0000000 --- a/resources/templates/public/welcome.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "layouts/base.html" %} - -{% block title %} -Welcome to Tadam -{% endblock %} - -{% block content %} -

Welcome to Tadam Framework

-

- Tadam -

-{% endblock %} diff --git a/resources/themes/light.html b/resources/themes/light.html new file mode 100644 index 0000000..b5023f3 --- /dev/null +++ b/resources/themes/light.html @@ -0,0 +1,43 @@ + + + + + Inicio + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/rsspaper/html.clj b/src/rsspaper/html.clj new file mode 100644 index 0000000..9f2edb9 --- /dev/null +++ b/src/rsspaper/html.clj @@ -0,0 +1 @@ +(ns rsspaper.html)