{{ data.title }}
13 | {% if data.excerpt %} 14 |{{ data.excerpt }}
15 | {% endif %} 16 |17 | 18 |
19 |├── templates ├── .gitkeep ├── index.twig ├── _partials │ ├── comments.twig │ ├── entry │ │ ├── text.twig │ │ ├── details.twig │ │ ├── button.twig │ │ ├── media.twig │ │ └── group.twig │ ├── content.twig │ ├── footer.twig │ ├── header.twig │ ├── navigation.twig │ ├── pagination.twig │ └── cover.twig ├── 404.twig ├── pages │ ├── default.twig │ ├── posts.twig │ ├── category.twig │ └── blog.twig ├── _post.twig ├── _utilities │ ├── teaser.twig │ └── image.twig └── _layouts │ └── default.twig ├── web ├── cpresources │ └── .gitignore ├── index.php └── .htaccess ├── storage ├── config-deltas │ └── .gitignore └── .gitignore ├── .gitignore ├── config ├── project │ ├── graphql │ │ ├── graphql.yaml │ │ └── schemas │ │ │ └── 08a529f2-1255-4bc6-9680-ec89d97b23fa.yaml │ ├── siteGroups │ │ └── 0ff5ed7e-a51c-4d65-82bc-8a9b37bea3c8.yaml │ ├── users │ │ ├── groups │ │ │ └── team--c55ca0a9-4bd6-409b-afd8-c1884dafecd0.yaml │ │ ├── users.yaml │ │ └── fieldLayouts │ │ │ └── 9f8f7322-a2f3-4028-b51f-8cb31b557400.yaml │ ├── sites │ │ └── default--37938585-7d7b-4d97-94f7-73dc07d795c2.yaml │ ├── sections │ │ └── home--936d7cd3-b422-4bc9-80dd-63bdfeb5ca47.yaml │ ├── comments │ │ └── comments │ │ │ └── fieldLayouts │ │ │ └── 56b220d0-934c-4971-8369-b9e49ce2b17f.yaml │ ├── entryTypes │ │ └── home--23a3f2f7-2b22-4a38-835a-342440a6a2ce.yaml │ └── project.yaml ├── htmlpurifier │ └── Default.json ├── routes.php ├── app.php └── general.php ├── craft ├── bootstrap.php ├── .env.example.dev ├── .env.example.staging ├── .env.example.production ├── composer.json ├── LICENSE ├── README.md └── .ddev └── config.yaml /templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/cpresources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/config-deltas/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.env 2 | /.idea 3 | /vendor 4 | .DS_Store 5 | web/uploads 6 | .env.web 7 | -------------------------------------------------------------------------------- /storage/.gitignore: -------------------------------------------------------------------------------- 1 | backups 2 | composer-backups 3 | config-backups 4 | logs 5 | runtime 6 | -------------------------------------------------------------------------------- /templates/index.twig: -------------------------------------------------------------------------------- 1 | {% set pageTitle = 'Home' %} 2 | 3 | {% extends "pages/blog" %} 4 | -------------------------------------------------------------------------------- /config/project/graphql/graphql.yaml: -------------------------------------------------------------------------------- 1 | publicToken: 2 | enabled: false 3 | expiryDate: null 4 | -------------------------------------------------------------------------------- /config/project/siteGroups/0ff5ed7e-a51c-4d65-82bc-8a9b37bea3c8.yaml: -------------------------------------------------------------------------------- 1 | name: 'Wordpress Starter' 2 | -------------------------------------------------------------------------------- /config/project/graphql/schemas/08a529f2-1255-4bc6-9680-ec89d97b23fa.yaml: -------------------------------------------------------------------------------- 1 | isPublic: true 2 | name: 'Public Schema' 3 | -------------------------------------------------------------------------------- /config/project/users/groups/team--c55ca0a9-4bd6-409b-afd8-c1884dafecd0.yaml: -------------------------------------------------------------------------------- 1 | description: null 2 | handle: team 3 | name: Team 4 | -------------------------------------------------------------------------------- /templates/_partials/comments.twig: -------------------------------------------------------------------------------- 1 |
{{ data.excerpt }}
15 | {% endif %} 16 |17 | 18 |
19 |No posts, yet!
23 | {% endfor %} 24 | {% include '_partials/pagination' with { pageInfo: pageInfo } %} 25 |{% if category %}{{ category.title }} | {% endif %}
12 | {% if entry.author.fullName %}By {{ entry.author.fullName }}
{% endif %} 13 |