From 46554729c9f5566e227e0ff6f2702bded3aedd93 Mon Sep 17 00:00:00 2001 From: somani Date: Fri, 25 Oct 2019 01:03:33 +0530 Subject: [PATCH] new commit --- data/niks.json | 7 ++++ new/index.html | 61 ++++++++++++++++++++++++++++++++++ new/personal.html | 83 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 151 insertions(+) create mode 100644 data/niks.json create mode 100644 new/index.html create mode 100755 new/personal.html diff --git a/data/niks.json b/data/niks.json new file mode 100644 index 0000000..0d8da72 --- /dev/null +++ b/data/niks.json @@ -0,0 +1,7 @@ +{ + "name": "niks", + "title": "Title of the comic", + "quote_1": "hii1", + "quote_2": "hii 2", + "quote_3": "hii 3" +} diff --git a/new/index.html b/new/index.html new file mode 100644 index 0000000..5ebb864 --- /dev/null +++ b/new/index.html @@ -0,0 +1,61 @@ + + + + + + + + + + Comic Mate + + + +
+ + {% for i in range(0, artists|length, 2) %} +
+ +
+
+
+
+
+

{{artists[i].title}}

+

By {{artists[i].name}}

+
+
+
+
+
+
+ {% if i+1!=artists|length %} + +
+
+
+
+
+

{{artists[i+1].title}}

+

By {{artists[i+1].name}}

+
+
+
+
+
+
+ {% endif %} +
+ {% endfor %} +
+

Made with by CodeCell

+
+
+ + \ No newline at end of file diff --git a/new/personal.html b/new/personal.html new file mode 100755 index 0000000..fd13ea1 --- /dev/null +++ b/new/personal.html @@ -0,0 +1,83 @@ + + + + + + + {{artist.name}} + + + + + + + + + + + + + +
+
+ {{artist.title}} +
+
+
+
+
+
+
+
+
Hello I am {{artist.name}}
+
+
+ +
+
+
+ +
+
{{artist.quote_1|safe}}
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
{{artist.quote_2|safe}}
+
+
+ +
+
+
+ + +
+
{{artist.quote_3|safe}}
+
+
+
+
+
+
+
+ + +
+ + + \ No newline at end of file