├── .editorconfig ├── .gitignore ├── htmx-server-block.php ├── package.json ├── readme.md ├── src ├── block.json ├── edit.js ├── editor.scss ├── index.js └── style.scss └── templates └── random_posts.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/.gitignore -------------------------------------------------------------------------------- /htmx-server-block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/htmx-server-block.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/readme.md -------------------------------------------------------------------------------- /src/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/src/block.json -------------------------------------------------------------------------------- /src/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/src/edit.js -------------------------------------------------------------------------------- /src/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/src/editor.scss -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/src/index.js -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/src/style.scss -------------------------------------------------------------------------------- /templates/random_posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svandragt/htmxpress-serverside-block/HEAD/templates/random_posts.php --------------------------------------------------------------------------------