From 550e2f03ad0b60b3c9db3d68dbf014dcb740a2ff Mon Sep 17 00:00:00 2001
From: Indrajith K L
Date: Tue, 17 Jan 2017 15:37:25 +0530
Subject: Initial Commit
---
partials/common/404.html | 5 +++++
partials/common/header.html | 10 ++++++++++
partials/common/layout.html | 4 ++++
partials/dashboard/dashboard.html | 6 ++++++
partials/login/login.html | 4 ++++
partials/test/test.html | 3 +++
6 files changed, 32 insertions(+)
create mode 100644 partials/common/404.html
create mode 100644 partials/common/header.html
create mode 100644 partials/common/layout.html
create mode 100644 partials/dashboard/dashboard.html
create mode 100644 partials/login/login.html
create mode 100644 partials/test/test.html
(limited to 'partials')
diff --git a/partials/common/404.html b/partials/common/404.html
new file mode 100644
index 0000000..9f2ec88
--- /dev/null
+++ b/partials/common/404.html
@@ -0,0 +1,5 @@
+
+
+ 404 page not found
+
+
diff --git a/partials/common/header.html b/partials/common/header.html
new file mode 100644
index 0000000..9764c12
--- /dev/null
+++ b/partials/common/header.html
@@ -0,0 +1,10 @@
+
diff --git a/partials/common/layout.html b/partials/common/layout.html
new file mode 100644
index 0000000..fbb3a26
--- /dev/null
+++ b/partials/common/layout.html
@@ -0,0 +1,4 @@
+
+
+
+{% block content %}{% endblock %}
diff --git a/partials/dashboard/dashboard.html b/partials/dashboard/dashboard.html
new file mode 100644
index 0000000..63329a9
--- /dev/null
+++ b/partials/dashboard/dashboard.html
@@ -0,0 +1,6 @@
+{% extends "partials/common/layout.html" %}
+{% block content %}
+
+
DASHBOARD
+
+{% endblock %}
diff --git a/partials/login/login.html b/partials/login/login.html
new file mode 100644
index 0000000..480d3b0
--- /dev/null
+++ b/partials/login/login.html
@@ -0,0 +1,4 @@
+LOGIN PAGE
+
+
+Go to Dashboard
diff --git a/partials/test/test.html b/partials/test/test.html
new file mode 100644
index 0000000..bdd83e7
--- /dev/null
+++ b/partials/test/test.html
@@ -0,0 +1,3 @@
+{% block content %}
+HELLO
+{% endblock %}
\ No newline at end of file
--
cgit v1.2.3