-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.ejs
94 lines (83 loc) · 3.58 KB
/
changelog.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>ScriptChip - Home</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link href="changelog.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">ScriptChip</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about">About</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="/changelog">Changelog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/docs">Documentation</a>
</li>
</ul>
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Your account</button>
</div>
</nav>
<br><br><br><br><br>
<center>
<img src="img/logo1.png" style="border-radius: 50%;">
<br>
<br>
<br>
<h1>ScriptChip - Changelog</h1>
<br>
<br>
<br>
<div id="changelog-container">
<!-- <div class="type new">New</div> <div class="type fix">Fix</div> <div class="type improvement">Improvment</div> -->
<!--<div class="changelog-item">
<div class="date">20.08.2020</div>
<div class="content">
<div class="title">Random image - cat</div>
<div class="type new">New</div>
<div class="body">Added new endpoint "/randomImage/cat" that returns a random cat image</div>
</div>
</div>
<div class="changelog-item">
<div class="date">20.08.2020</div>
<div class="content">
<div class="title">Random image - cat</div>
<div class="type new">New</div>
<div class="body">Added new endpoint "/imageGeneration/amijoke" that returns a random cat image</div>
</div>
</div>
<div class="changelog-item">
<div class="date">20.08.2020</div>
<div class="content">
<div class="title">Random image - cat</div>
<div class="type new">New</div>
<div class="body">Added new endpoint "/randomImage/cat" that returns a random cat image</div>
</div>
</div>-->
<%- changelog %>
</div>
</center>
<br><br><br>
<div class="footer">
© ScriptChip Team 2019 - <span id="year"></span> | All rights reserved
</div>
</body>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</html>