Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/denoland/fresh-wordpress-themes
https://wp-blog-example.deno.dev/ https://wp-sweets-co.deno.dev/
https://github.com/denoland/fresh-wordpress-themes
fresh wordpress-theme
Last synced: about 1 month ago
JSON representation
https://wp-blog-example.deno.dev/ https://wp-sweets-co.deno.dev/
- Host: GitHub
- URL: https://github.com/denoland/fresh-wordpress-themes
- Owner: denoland
- Created: 2022-08-29T06:12:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-23T04:54:39.000Z (almost 2 years ago)
- Last Synced: 2024-09-30T17:47:08.551Z (about 1 month ago)
- Topics: fresh, wordpress-theme
- Language: TypeScript
- Homepage: https://deno.com/blog/introducing-fresh-wordpress-themes
- Size: 4.82 MB
- Stars: 53
- Watchers: 15
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fresh WordPress Themes
This repository includes [Fresh](https://fresh.deno.dev/) WordPress themes. You
can start developing WordPress-backed Fresh website using these templates.See also
[the blog post](https://deno.com/blog/introducing-fresh-wordpress-themes) for
more contexts.## Blog theme
Blog theme implements typical blog features for WordPress.
![](./.github/blog-screenshot.png)
Start the blog theme locally:
```
cd blog
deno task docker # this starts local wordpress server at port 80
```Then open another terminal and run:
```
deno task start # this starts fresh website
```The website runs at http://localhost:8000/
The WordPress dashboard runs at http://localhost/wp-admin (username: `user`,
password: `password`). You can create, modify, and manage the contents there.- source: [./blog](./blog)
- online live demo: https://wp-blog-example.deno.dev/## Shop theme
Shop theme implements features used for typical shop website.
![](./.github/shop-screenshot.png)
Start the shop theme locally:
```
cd corporate
deno task docker # this starts local wordpress server at port 80
```Then open another terminal and run:
```
deno task start # this starts fresh website
```The website runs at http://localhost:8000/
The WordPress dashboard runs at http://localhost/wp-admin (username: `user`,
password: `password`). You can create, modify, and manage the contents there.- source: [./corporate](./corporate)
- online live demo: https://wp-sweets-co.deno.dev/The blog theme and shop theme uses different setups for WordPress. Make sure
that you run `deno task docker` in a right directory.