Initial commit of content.
This commit is contained in:
12
lib/modules/apostrophe-pages/views/notFound.html
Normal file
12
lib/modules/apostrophe-pages/views/notFound.html
Normal file
@@ -0,0 +1,12 @@
|
||||
{#
|
||||
Use this template to build out your 404 error pages. Like page templates,
|
||||
it inherits a global layout.
|
||||
#}
|
||||
|
||||
{% extends "layout.html" %}
|
||||
|
||||
{% block title %}404 - Page not found{% endblock %}
|
||||
|
||||
{% block main %}
|
||||
We're sorry. We couldn't find the page you're looking for.
|
||||
{% endblock %}
|
||||
34
lib/modules/apostrophe-pages/views/pages/aves.html
Normal file
34
lib/modules/apostrophe-pages/views/pages/aves.html
Normal file
File diff suppressed because one or more lines are too long
34
lib/modules/apostrophe-pages/views/pages/avhs.html
Normal file
34
lib/modules/apostrophe-pages/views/pages/avhs.html
Normal file
File diff suppressed because one or more lines are too long
24
lib/modules/apostrophe-pages/views/pages/district.html
Normal file
24
lib/modules/apostrophe-pages/views/pages/district.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{% extends "layout.html" %}
|
||||
|
||||
{% block main %}
|
||||
<div class="container" style="margin-top: 3rem">
|
||||
{{ apos.area(data.page, "body", {
|
||||
widgets: {
|
||||
'apostrophe-images': {size: 'original'},
|
||||
'apostrophe-rich-text': {
|
||||
toolbar: ['Styles', 'Bold', 'Italic', 'Link', 'Unlink', 'Indent', 'Outdent', 'Anchor', 'Table', 'BulletedList', 'Blockquote', 'Strike', 'Subscript', 'Superscript', 'Split'],
|
||||
styles: [
|
||||
{name: 'Paragraph', element: 'p'},
|
||||
{name: 'highlighted', element: 'p', attributes: [{'class': 'highlighted'}]},
|
||||
{name: 'Heading 2', element: 'h2'},
|
||||
{name: 'Heading 3', element: 'h3'},
|
||||
{name: 'Heading 4', element: 'h4'},
|
||||
{name: 'Heading 5', element: 'h5'}
|
||||
]
|
||||
},
|
||||
'apostrophe-files': {},
|
||||
'two-column': {}
|
||||
}
|
||||
}) }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
41
lib/modules/apostrophe-pages/views/pages/home.html
Normal file
41
lib/modules/apostrophe-pages/views/pages/home.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{#
|
||||
This is an example home page template. It inherits and extends a layout template
|
||||
that lives in the top-level views/ folder for convenience
|
||||
#}
|
||||
|
||||
{% extends "layout.html" %}
|
||||
|
||||
{#{% block menu %}#}
|
||||
{# <div style="height: 20px; background-color: red"></div>#}
|
||||
{#{% endblock %}#}
|
||||
|
||||
{% block main %}
|
||||
{# <div class="main-content">#}
|
||||
{# <h3>Hello world!#}
|
||||
{# {% if not data.user %}#}
|
||||
{# <a class="login-link" href="{{ apos.prefix }}/login">Login</a>#}
|
||||
{# {% endif %}#}
|
||||
{# </h3>#}
|
||||
{# <p>This is a very bare bones Apostrophe project. Now, get to work and make a real website!</p>#}
|
||||
{# </div>#}
|
||||
<div class="container" style="margin-top: 3rem">
|
||||
{{ apos.area(data.page, "body", {
|
||||
widgets: {
|
||||
'apostrophe-images': {size: 'one-half'},
|
||||
'apostrophe-rich-text': {
|
||||
toolbar: ['Styles', 'Bold', 'Italic', 'Link', 'Unlink', 'Anchor', 'Table', 'BulletedList', 'Blockquote', 'Strike', 'Subscript', 'Superscript', 'Split'],
|
||||
styles: [
|
||||
{name: 'Paragraph', element: 'p'},
|
||||
{name: 'highlighted', element: 'p', attributes: [{'class': 'highlighted'}]},
|
||||
{name: 'Heading 2', element: 'h2'},
|
||||
{name: 'Heading 3', element: 'h3'},
|
||||
{name: 'Heading 4', element: 'h4'},
|
||||
{name: 'Heading 5', element: 'h5'}
|
||||
]
|
||||
},
|
||||
'apostrophe-files': {},
|
||||
'two-column': {}
|
||||
}
|
||||
}) }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user