-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.html
54 lines (42 loc) · 1.17 KB
/
article.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Article - study project Wikipedia</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="page-wrapper">
<div class="sidebar-col">
<div class="aside-block">
<div class="logo">
<a href="index.html">
<img src="img/wiki-logo.png" alt="Wikipedia">
</a>
</div>
</div>
<div class="aside-block">
<a href="new.html" class="button-new">Add article</a>
</div>
<div class="aside-block">
<h3 class="aside-title">
New Articles
</h3>
<ul class="articles-list" id='articles-list'>
</ul>
</div>
</div>
<div class="main-col-article">
<article class="article-wrapper" id="article">
</article>
<button class="button-article" id="edit-article">Edit Article</button>
</div>
</div>
<footer class="page-footer">
<p>The project was done by Evgeny Bondar at an intensity of <a href="https://WebCademy.ru" target="_blank">WebCademy.ru</a></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="js/init.js"></script>
<script src="js/article.js"></script>
</body>
</html>