You've already forked wp-bootstrap
- Bootstrap 5 CSS/JS integration via Yarn (served locally) - Dart Sass build pipeline with PostCSS, Autoprefixer, cssnano - Twig 3.0 via Composer with PSR-4 autoloading - FSE block theme templates (index, home, single, page, archive, search, 404) - Template parts (header, footer) and block patterns - theme.json with Bootstrap 5-aligned design tokens - Gitea CI/CD workflow for automated release packages - WordPress i18n support (en_US base, de_CH translation) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Title: Query loop
|
|
* Slug: wp-bootstrap/template-query-loop
|
|
* Inserter: no
|
|
*
|
|
* @package WPBootstrap
|
|
* @since 0.0.1
|
|
*/
|
|
?>
|
|
<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","inherit":true},"align":"wide","layout":{"type":"constrained"}} -->
|
|
<!-- wp:post-template {"layout":{"type":"default"}} -->
|
|
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}}},"layout":{"type":"default"}} -->
|
|
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)">
|
|
<!-- wp:post-title {"level":2,"isLink":true} /-->
|
|
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|10"}},"layout":{"type":"flex","flexWrap":"wrap"},"fontSize":"small"} -->
|
|
<div class="wp-block-group has-small-font-size">
|
|
<!-- wp:post-date /-->
|
|
<!-- wp:paragraph -->
|
|
<p>·</p>
|
|
<!-- /wp:paragraph -->
|
|
<!-- wp:post-author-name {"isLink":true} /-->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
<!-- wp:post-excerpt {"moreText":"<?php esc_attr_e( 'Read more', 'wp-bootstrap' ); ?>"} /-->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
<!-- wp:separator {"className":"is-style-wide"} -->
|
|
<hr class="wp-block-separator has-alpha-channel-opacity is-style-wide"/>
|
|
<!-- /wp:separator -->
|
|
<!-- /wp:post-template -->
|
|
<!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
|
<!-- wp:query-pagination-previous /-->
|
|
<!-- wp:query-pagination-numbers /-->
|
|
<!-- wp:query-pagination-next /-->
|
|
<!-- /wp:query-pagination -->
|
|
<!-- wp:query-no-results -->
|
|
<!-- wp:paragraph -->
|
|
<p><?php esc_html_e( 'No posts were found.', 'wp-bootstrap' ); ?></p>
|
|
<!-- /wp:paragraph -->
|
|
<!-- /wp:query-no-results -->
|
|
<!-- /wp:query -->
|