-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
74 lines (65 loc) · 2.54 KB
/
base.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Instargram</title>
<link href="base.css" rel="stylesheet" type="text/css">
<link rel="icon" href="../img/icon.png">
</head>
<body>
<header>
<div class="leftbox">
<div class="favicon frame">
<img class="faviconFrame" src="../img/line_favicon.png" alt="인스타 로고" />
</div>
<div class="line">
<img class="logo" src="../img/logo_text.png" alt="인스타 글씨" />
</div>
</div>
<div class="right box">
<div class="heart_box">
<img class="heart" src="../img/new.png" alt="글 작성" />
</div>
<div class="myInfo_box">
<img class="myInfo" src="../img/myinfo.png" alt="내 프로필"/>
</div>
</div>
</header>
</body>
</html>
<!--
<!--{% load static %}-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Instagram</title>
<link href="../css/base.css" rel="stylesheet" type="text/css"/>
<link rel="icon" href="../img/icon.png">
</head>
<body>
<header>
<div class="left_box">
<div class="favicon_frame">
<!-- <img class="faviconFrame" src="{% static 'img/line_favicon.png' %}" alt="인스타 로고"/> -->
<button type="button" class="heart"><img src="../img/line_favicon.png"><a href="{% url 'feed' %}"></a></button>
</div>
<div class="line">
<!-- <img class="logo" src="{% static 'img/logo_text.png' %}" alt="인스타 글씨"/> -->
<button type="button" class="heart"><img src="../img/logo_text.png"><a href="{% url 'feed' %}"></a></button>
</div>
</div>
<div class="right_box">
<div class="heart_box">
<!-- <img class="heart" src="{% static 'img/new.png' %}" alt="글 작성"/> -->
<button type="button" class="heart"><img src="../img/new.png"><a href="{% url 'new' %}"></a></button>
</div>
<div class="myInfo_box">
<!-- <img class="myInfo" src="{% static 'img/myinfo.png' %}" alt="내 프로필"/> -->
<button type="button" class="heart"><img src="../img/myinfo.png"><a href="{% url 'profile' %}"></a></button>
</div>
</div>
</header>
</body>
</html>
-->