forked from jijiseong/fe-newsstand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.37 KB
/
index.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
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF_8">
<meta name="viewport" content="width=device_width, initial_scale=1.0">
<title>Newsstand</title>
<link rel="icon" href="./assets/images/newsstand.svg">
<link rel="stylesheet" href="css/style.css">
<script defer type="module" src="script/main.js"></script>
</head>
<body class="surface_default">
<div class="news_stand_wrapper">
<header class="news_stand_header">
<div class="title_wrapper">
<img src="./assets/images/newsstand.svg" alt="뉴스스탠드 아이콘">
<h1 class="text_strong display_bold24">뉴스스탠드</h1>
</div>
<button id="theme_toggle" class="pointer">
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill-rule="evenodd">
<g fill-rule="nonzero">
<path
d="M12,22 C17.5228475,22 22,17.5228475 22,12 C22,6.4771525 17.5228475,2 12,2 C6.4771525,2 2,6.4771525 2,12 C2,17.5228475 6.4771525,22 12,22 Z M12,20.5 L12,3.5 C16.6944204,3.5 20.5,7.30557963 20.5,12 C20.5,16.6944204 16.6944204,20.5 12,20.5 Z">
</path>
</g>
</g>
</svg>
</button>
<time class="display_medium16 text_default"></time>
</header>
<div id="headline_news_wrapper">
<article class="headline_news surface_alt">
<div class="headline_area">
<h2 class="headline_area_item text_strong display_bold14"></h2>
<div class="headline_area_item news_title_wrapper">
</div>
</div>
</article>
<article class="headline_news surface_alt">
<div class="headline_area">
<h2 class="headline_area_item text_strong display_bold14"></h2>
<div class="headline_area_item news_title_wrapper">
</div>
</div>
</article>
</div>
<main id="media_wrapper">
<nav id="media_view_nav"></nav>
<div id="media_view_wrapper"></div>
</main>
</div>
</body>
</html>