Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI40 Lab Activity 1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kevin Daniel Sibug
CSCI40 Lab Activity 1
Commits
28766f8b
Commit
28766f8b
authored
Mar 07, 2020
by
Kevin Sibug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the HTML templates and images and edited the image source code
parent
c035d876
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
87 additions
and
0 deletions
+87
-0
cloud.png
willowisp/templates/cloud.png
+0
-0
detail_cloud.html
willowisp/templates/detail_cloud.html
+18
-0
detail_jester.html
willowisp/templates/detail_jester.html
+18
-0
detail_sunflowey.html
willowisp/templates/detail_sunflowey.html
+18
-0
heroes.html
willowisp/templates/heroes.html
+33
-0
jester.png
willowisp/templates/jester.png
+0
-0
sunflowey.png
willowisp/templates/sunflowey.png
+0
-0
No files found.
willowisp/templates/cloud.png
0 → 100644
View file @
28766f8b
6.92 KB
willowisp/templates/detail_cloud.html
0 → 100644
View file @
28766f8b
<!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
willowisp/templates/detail_jester.html
0 → 100644
View file @
28766f8b
<!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
willowisp/templates/detail_sunflowey.html
0 → 100644
View file @
28766f8b
<!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
willowisp/templates/heroes.html
0 → 100644
View file @
28766f8b
<!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
willowisp/templates/jester.png
0 → 100644
View file @
28766f8b
66.3 KB
willowisp/templates/sunflowey.png
0 → 100644
View file @
28766f8b
13.9 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment