Go to file
3wc 2da7726458 Add Lando 2024-01-11 22:59:00 -03:00
assets/fonts init theme files 2024-01-11 11:33:20 +05:00
templates init theme files 2024-01-11 11:33:20 +05:00
.gitignore Add Lando 2024-01-11 22:59:00 -03:00
.lando.yml Add Lando 2024-01-11 22:59:00 -03:00
.wp-env.json Add wp-env config and instructions 2024-01-11 11:56:04 +05:00
README.md Add Lando 2024-01-11 22:59:00 -03:00
functions.php load css file 2024-01-11 11:48:33 +05:00
style.css init theme files 2024-01-11 11:33:20 +05:00
theme.json init theme files 2024-01-11 11:33:20 +05:00

README.md

sample-wp-block-theme

Repo for practice task for Autonomic front-end recruitment.

Instructions:

  • Replicate craze.co.uk as a WordPress block theme.
  • Notes:
    • You can use the provided 'Inter' font in /assets/fonts/ as the main sans-serif font in use on the site.
    • Similarly, you can use any monospace font in place of the MD IO typeface the website is using for monospace text.
    • The breadcrumb on top doesn't need to be functionaly. You can use static text.
    • You don't need to copy all of the site's content. Feel free to use placeholder text.
    • Majority of the site's styling should be implemented via theme.json.
    • The theme should have at least two templates, an index or home template, and a single page/post template.

Running the site locally

wp-env

You can launch an instance of WordPress pre-loaded with this theme using the wp-env tool.

$ npm -g i @wordpress/env
$ cd /path/to/theme/Repo
$ wp-env start

This will launch a WordPress local instance at http://localhost:8888. You can log into the dashboard at http://localhost:8888/wp-admin with admin as the username and password as the password.

Lando

$ lando start
$ lando wp --path=/app/web/ core install \
    --title="Dev Env" \
    --admin_user=admin --admin_password=admin --admin_email=admin@example.com \
    --skip-email --url=https://sample-block-theme.lndo.site/
$ lando wp --path=/app/web/ theme activate sample-wp-block-theme

docker-compose