mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-09-10 20:07:12 +02:00
Added first draft Homepage
This commit is contained in:
10
src/template/base.html.twig
Normal file
10
src/template/base.html.twig
Normal file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
{% block title %}Online Shop{% endblock %}
|
||||
</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
0
src/template/product/basket/basket.html.php
Normal file
0
src/template/product/basket/basket.html.php
Normal file
1
src/template/product/basket/list.html.php
Normal file
1
src/template/product/basket/list.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
1
src/template/product/basket/listItem.html.php
Normal file
1
src/template/product/basket/listItem.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
1
src/template/product/overview/list.html.php
Normal file
1
src/template/product/overview/list.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
1
src/template/product/overview/listItem.html.php
Normal file
1
src/template/product/overview/listItem.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
1
src/template/product/overview/overview.html.php
Normal file
1
src/template/product/overview/overview.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
3
src/template/standart/homepage.html.twig
Normal file
3
src/template/standart/homepage.html.twig
Normal file
@@ -0,0 +1,3 @@
|
||||
{% extends "base.html.twig" %}
|
||||
{% block title %}Online Shop{% endblock %}
|
||||
{% block body %}Welcome to the online shop ;){% endblock %}
|
1
src/template/user/login.html.php
Normal file
1
src/template/user/login.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
1
src/template/user/registration.html.php
Normal file
1
src/template/user/registration.html.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php
|
Reference in New Issue
Block a user