diff --git a/templates/base.html.twig b/templates/base.html.twig new file mode 100644 index 0000000..d7646b0 --- /dev/null +++ b/templates/base.html.twig @@ -0,0 +1,22 @@ + + + + + + + + {% block title %}Welcome!{% endblock %} + {% block stylesheets %} + {% endblock %} + + + {% block body %}{% endblock %} + {% block javascripts %} + {% block importmap %}{{ importmap('app') }}{% endblock %} + {% endblock %} + + diff --git a/templates/default/home.html.twig b/templates/default/home.html.twig new file mode 100644 index 0000000..5653250 --- /dev/null +++ b/templates/default/home.html.twig @@ -0,0 +1,125 @@ +{% extends 'base.html.twig' %} + +{% block title %}Sermon Notes{% endblock %} + +{% block stylesheets %} + + +{% endblock %} + +{% block javascripts %} + + + + + + + + +{% endblock %} + +{% block body %} +
+
+
+
+
    +
+
+ +
+

Reference

+
+   + +
+
+
+ + + + + + + + + + + {% for n in app.user.notes %} + {{ n.toTableRow() | raw }}
+ {% endfor %} + +
TitleSpeakerPassageDate
+
+
+ +
+
+

Notes

+ +
+
+   +   + +
+ +
+ + + + + + + + +
+ + +
+
+
+
+ + {% include('default/sidebar.html.twig') %} + +
+ +
+ +
+
+ +
+ +
+
+{% endblock %} \ No newline at end of file diff --git a/templates/default/index.html.twig b/templates/default/index.html.twig new file mode 100644 index 0000000..1bee19e --- /dev/null +++ b/templates/default/index.html.twig @@ -0,0 +1,54 @@ +{% extends 'base.html.twig' %} + +{% block title %}Sermon Notes{% endblock %} + +{% block stylesheets %} + + +{% endblock %} + +{% block javascripts %} + + + + + + + +{% endblock %} + +{% block body %} +
+
+
+ + + + +
+
+ + {% include('default/sidebar.html.twig') %} + +
+{% endblock %} \ No newline at end of file diff --git a/templates/default/sidebar.html.twig b/templates/default/sidebar.html.twig new file mode 100644 index 0000000..1724497 --- /dev/null +++ b/templates/default/sidebar.html.twig @@ -0,0 +1,74 @@ + + diff --git a/templates/editors/reference-editor.html.twig b/templates/editors/reference-editor.html.twig new file mode 100644 index 0000000..d490bc5 --- /dev/null +++ b/templates/editors/reference-editor.html.twig @@ -0,0 +1,52 @@ + + + + Reference Editor + + + + + + Back
+ + + + + \ No newline at end of file diff --git a/templates/editors/series-editor.html.twig b/templates/editors/series-editor.html.twig new file mode 100644 index 0000000..b059c32 --- /dev/null +++ b/templates/editors/series-editor.html.twig @@ -0,0 +1,20 @@ + + + + Series Editor + + + +    +    +    + Back + + + + \ No newline at end of file diff --git a/templates/editors/speaker-editor.html.twig b/templates/editors/speaker-editor.html.twig new file mode 100644 index 0000000..6868c36 --- /dev/null +++ b/templates/editors/speaker-editor.html.twig @@ -0,0 +1,20 @@ + + + + Speaker Editor + + + +    +    +    + Back + + + + \ No newline at end of file diff --git a/templates/editors/template-editor.html.twig b/templates/editors/template-editor.html.twig new file mode 100644 index 0000000..557187e --- /dev/null +++ b/templates/editors/template-editor.html.twig @@ -0,0 +1,25 @@ + + + + Template Editor + + + +
+    +    +    + Back +
+ + +
+ + + + \ No newline at end of file diff --git a/templates/registration/register.html.twig b/templates/registration/register.html.twig new file mode 100644 index 0000000..521a291 --- /dev/null +++ b/templates/registration/register.html.twig @@ -0,0 +1,67 @@ +{% extends 'base.html.twig' %} + +{% block title %}Register{% endblock %} + +{% block stylesheets %} + + +{% endblock %} + +{% block javascripts %} + + + + + + +{% endblock %} + +{% block body %} +
+ {% include('default/sidebar.html.twig') %} + +
+

Registration

+
+ + {{ form_errors(registrationForm) }} + + {{ form_start(registrationForm) }} + {{ form_row(registrationForm.name) }} + {{ form_row(registrationForm.email) }} + {{ form_row(registrationForm.plainPassword, { + label: 'Password' + }) }} + + + {{ form_end(registrationForm) }} + +
+ +{% endblock %} diff --git a/templates/security/login.html.twig b/templates/security/login.html.twig new file mode 100644 index 0000000..e6a6b3d --- /dev/null +++ b/templates/security/login.html.twig @@ -0,0 +1,50 @@ +{% extends 'base.html.twig' %} + +{% block title %}Login{% endblock %} + +{% block stylesheets %} + + +{% endblock %} + +{% block javascripts %} + + + + + + +{% endblock %} + +{% block body %} +
+ {% include('default/sidebar.html.twig') %} + +
+

Login

+
+ +
+ {% if error %} +
{{ error.messageKey|trans(error.messageData, 'security') }}
+ {% endif %} + + {% if app.user %} +
+ You are logged in as {{ app.user.userIdentifier }}, Logout +
+ {% endif %} + +
+ + + + + + +
+
+
+{% endblock %} \ No newline at end of file