9 | {% endfor %}
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # This file contains a list of files and folders to be ignored when
2 | # committing to a git repository. Ignored files are both Slate project
3 | # specific files as well as commonly ignored files on any project.
4 |
5 | # For more information on this .gitignore files, see GitHub's
6 | # documentation: https://help.github.com/articles/ignoring-files/
7 |
8 | *.yml
--------------------------------------------------------------------------------
/sections/template-404.liquid:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
404
6 |
{{ 'general.404.title' | t }}
7 |
{{ 'general.404.subtext_html' | t }}
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Leena by WeeklyHow
2 | Shopify Theme Development Course Project Files by WeeklyHow
3 |
4 | [Official course page](https://weeklyhow.com/courses/shopify-theme-development-masterclass-learn-how-to-create-shopify-themes/).
5 |
6 | This package is built using ThemeKit, so in order for you to be able to customize this package, you either download this repository and upload the theme to a development store, or use ThemeKit for Shopify theme development.
--------------------------------------------------------------------------------
/locales/en.default.json:
--------------------------------------------------------------------------------
1 | {
2 | "general": {
3 | "404": {
4 | "title": "Not found",
5 | "subtext_html": "The page you were looking for does not exist"
6 | },
7 | "Cart": {
8 | "title": "Cart"
9 | },
10 | "Blog": {
11 | "title": "Blog"
12 | },
13 | "Layout": {
14 | "login_text": "Login",
15 | "logout_text": "Logout",
16 | "register_text": "Register",
17 | "account_text": "Account"
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/locales/fr.json:
--------------------------------------------------------------------------------
1 | {
2 | "general": {
3 | "404": {
4 | "title": "Pas trouve",
5 | "subtext_html": "le page introuvable"
6 | },
7 | "Cart": {
8 | "title": "Panier"
9 | },
10 | "Blog": {
11 | "title": "Blog"
12 | },
13 | "Layout": {
14 | "login_text": "Compte",
15 | "logout_text": "Logout",
16 | "register_text": "Creer un compte",
17 | "account_text": "User"
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/locales/ja.json:
--------------------------------------------------------------------------------
1 | {
2 | "general": {
3 | "404": {
4 | "title": "Pas trouve",
5 | "subtext_html": "le page introuvable"
6 | },
7 | "Cart": {
8 | "title": "Shopping Cart"
9 | },
10 | "Blog": {
11 | "title": "Blog"
12 | },
13 | "Layout": {
14 | "login_text": "Compte",
15 | "logout_text": "Logout",
16 | "register_text": "Creer un compte",
17 | "account_text": "User"
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/templates/cart.json:
--------------------------------------------------------------------------------
1 | {
2 | "sections": {
3 | "template": {
4 | "type": "template-cart",
5 | "blocks": {
6 | "cart_total": {
7 | "type": "cart_total"
8 | },
9 | "cart_buttons": {
10 | "type": "cart_checkout_button"
11 | }
12 | },
13 | "block_order": ["cart_total","cart_buttons"]
14 | }
15 | },
16 | "order": ["template"]
17 | }
--------------------------------------------------------------------------------
/sections/translation.liquid:
--------------------------------------------------------------------------------
1 | {% form 'localization', id: "localization_form_tag", class: "dropup" %}
2 |
To create a block, you can open your cuztomizer or your theme editor and then navigate to your FAQ page and there you should be able to create an FAQ item