Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions data/niks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "niks",
"title": "Title of the comic",
"quote_1": "hii1",
"quote_2": "hii 2",
"quote_3": "hii 3"
}
61 changes: 61 additions & 0 deletions new/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Bangers|Happy+Monkey|Patrick+Hand+SC&display=swap|Permanent+Marker&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static',filename='styles/index.css') }}">
<title>Comic Mate</title>
</head>
<body>

<div class="whole-container">
<!-- <header class="main panel dkblue">
<div class="inner">
<h1 class="big">Big Header 1</h1>
<div class="right">
</div>
</div>
</header> -->
{% for i in range(0, artists|length, 2) %}
<section class="comic panel {{colours[(i//2)%6]}}">
<a href="/{{artists[i].slug}}">
<div class="double triple inner">
<div class="two-thirds left" id="">
<div class="comic-pane {{colours[(i//2)%6]}}">
<div class="text">
<div class="holder">
<h2 class="yellow">{{artists[i].title}}</h2>
<p>By {{artists[i].name}}</p>
</div>
</div>
</div>
</div>
</div>
</a>
{% if i+1!=artists|length %}
<a href="/{{artists[i+1].slug}}">
<div class="double triple inner">
<div class="two-thirds left" id="">
<div class="comic-pane {{colours[(i//2)%6]}}">
<div class="text">
<div class="holder">
<h2 class="yellow">{{artists[i+1].title}}</h2>
<p>By {{artists[i+1].name}}</p>
</div>
</div>
</div>
</div>
</div>
</a>
{% endif %}
</section>
{% endfor %}
<section class="comic panel" >
<h2 class="black" style="text-align: center;">Made with <i class="fas fa-heart heart" style="color: red;"></i> by <a href="https://www.kjscecodecell.com/">CodeCell</a></h2>
</section>
</div>
</body>
</html>
83 changes: 83 additions & 0 deletions new/personal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{artist.name}}</title>

<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/css?family=Bangers|Happy+Monkey|Patrick+Hand+SC&display=swap|Permanent+Marker&display=swap" rel="stylesheet">

<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Bangers|Happy+Monkey|Patrick+Hand+SC&display=swap|Permanent+Marker&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static',filename='styles/personal.css') }}">


</head>
<body>
<div class="container">
<section class="title">
{{artist.title}}
</section>
<section>
<div class="row">
<div class="col s6">
<div class="char_cont"><img src="https://git-ws-angrybirds.surge.sh/81e7333a025924eae95eb6222beedf06.png" class="birdy"></img>
</div>
</div>
<div class="col s6">
<blockquote class="speech bubble"><div style="width: 75%; margin: 10%;">Hello I am <b>{{artist.name}}</b></div></blockquote>
</div>
</div>

</section>
<section>
<div class="row">

<div class="col s6">
<div style="float: right; border: 5px solid black; width: 100%"><div style="width: 65%; margin: 10%;">{{artist.quote_1|safe}}</div></div>
</div>
<div class="col s6">
<div class="char_cont"><img src="https://git-ws-angrybirds.surge.sh/584c69846e7d5809d2fa6366.png" class="birdy" style="transform: scaleX(-1);"></img>
</div>
</div>
</div>
</section>

<section>
<div class="row" style="width: 80%;">
<div class="col s6">
<div class="char_cont"><img src="https://git-ws-angrybirds.surge.sh/Blues_240.png" class="birdy"></img>
</div>
</div>
<div class="col s6">
<blockquote class="speech bubble"><div style="width: 75%; margin: 10%; padding-bottom: 20%;">{{artist.quote_2|safe}}</div></blockquote>
</div>
</div>

</section>
<section>
<div class="row">


<div class="col s6">
<blockquote class="electric bubble" style="float: right;"><div style="width: 65%; margin: 10%;">{{artist.quote_3|safe}}</div></blockquote>
</div>
<div class="col s6">
<div class="char_cont"><img src="https://git-ws-angrybirds.surge.sh/Konfest-PNG-JPG-Image-Pic-Photo-Free-Download-Royalty-Unlimited-clip-art-sticker-angry-bird-cartoon-emoticon-expression-blue-2.png" class="birdy" style="transform: scaleX(-1);"></img>
</div>
</div>
</div>
</section>
<section class="footer" style="background: #000; color: #fff; font-size: 25px;">
Comic By: {{artist.name}}<br/>
Developed By: CodeCell
</section>

</div>

</body>
</html>