Commit 28766f8b authored by Kevin Sibug's avatar Kevin Sibug

Added the HTML templates and images and edited the image source code

parent c035d876
<!DOCTYPE html>
<html>
<head>
<title>Detail - Cloud</title>
</head>
<body>
{% load static %}
<img src="{% static "cloud.png" %}" style="width: 10vw;" />
<h1>Detail - Cloud</h1>
<dl>
<dt>Health Points</dt><dd>600</dd>
<dt>Base Attack Damage</dt><dd>57</dd>
<dt>Skills</dt><dd>Nimbus, Rain Cloud, Thunderbolt</dd>
<dt>Lore</dt><dd>I am a cloud. When I pee you call it 'rain'.</dd>
</dl>
<button type="button"><a href = "{% url 'heroes_view' %}">Back to Heroes List</a></button>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Detail - Jester</title>
</head>
<body>
{% load static %}
<img src="{% static "jester.png" %}" style="width: 10vw;"/>
<h1>Detail - Jester</h1>
<dl>
<dt>Health Points</dt><dd>660</dd>
<dt>Base Attack Damage</dt><dd>64</dd>
<dt>Skills</dt><dd>Laugh, Dance, Smile</dd>
<dt>Lore</dt><dd>I do it for the LOLs.</dd>
</dl>
<button type="button"><a href = "{% url 'heroes_view' %}">Back to Heroes List</a></button>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>Detail - Sunflowey</title>
</head>
<body>
{% load static %}
<img src="{% static "sunflowey.png" %}"style="width: 10vw;" />
<h1>Detail - Sunflowey</h1>
<dl>
<dt>Health Points</dt><dd>650</dd>
<dt>Base Attack Damage</dt><dd>43</dd>
<dt>Skills</dt><dd>Power Pellet, Sunshine, Pollen Punch</dd>
<dt>Lore</dt><dd>I am Sunflowey. Sometimes a sun, sometimes a flower.</dd>
</dl>
<button type="button"><a href = "{% url 'heroes_view' %}">Back to Heroes List</a></button>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<title>The Will of the Wisps Wiki</title>
</head>
<body>
<h1>The Will of the Wisps Wiki</h1>
<dl>
<div id = 'cloud'>
<h2><a href = "{% url 'cloud_view' %}" id = 'cloud-view'>Cloud</a></h2>
<dt class = 'health-points'>Health Points</dt><dd>600</dd>
<dt>Base Attack Damage</dt><dd>57</dd>
</div>
<div id = 'jester'>
<h2><a href = "{% url 'jester_view' %}" id = 'jester-view'>Jester</a></h2>
<dt class = 'health-points'>Health Points</dt><dd>660</dd>
<dt>Base Attack Damage</dt><dd>64</dd>
</div>
<div id = 'sunflowey'>
<h2><a href = "{% url 'sunflowey_view' %}" id = 'sunflowey-view'>Sunflowey</a></h2>
<dt class = 'health-points'>Health Points</dt><dd>650</dd>
<dt>Base Attack Damage</dt><dd>43</dd>
</div>
</dl>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment