Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {% extends data.outerLayout %}
  2.  
  3. {% block title %}Home{% endblock %}
  4. {% block main %}
  5.   <div class="main-content">
  6.     <h3>Hello world!
  7.       {% if not data.user %}
  8.         <a class="login-link" href="/login">Login</a>
  9.       {% endif %}
  10.     </h3>
  11.     <p>This is a very barebones Apostrophe project. Now, get to work and make a real website!</p>
  12.   {{ apos.area(data.page, 'body', {
  13.       widgets: {
  14.         'apostrophe-images': {
  15.           size: 'full'
  16.         },
  17.         'apostrophe-rich-text': {
  18.           toolbar: [ 'Styles', 'Bold', 'Italic', 'Link', 'Unlink' ],
  19.           styles: [
  20.             { name: 'Heading', element: 'h3' },
  21.             { name: 'Subheading', element: 'h4' },
  22.             { name: 'Paragraph', element: 'p' }
  23.           ]
  24.         }
  25.       }
  26.     }) }}
  27.   </div>
  28. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement