11{% load static %}
22<!DOCTYPE html>
33< html lang ="ko ">
4- < head >
5- < meta charset ="UTF-8 " />
6- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7- < title > Moodico"</ title >
8- < link rel ="stylesheet " href ="{% static 'css/style.css' %} " />
9- {% block extra_head %}{% endblock %}
10- </ head >
11- < body >
12- < header >
13- < nav >
14- < a href ="{% url 'main' %} " class ="logo " style ="text-decoration: none "
15- > Moodico"</ a
16- >
17- < div class ="nav-links ">
18- < a
19- href ="{% url 'liked_products' %} "
20- class ="nav-link liked-products-link "
21- >
22- 💖 찜한 아이템
23- </ a >
24- < a href ="{% url 'login' %} " class ="login-icon "> 👤 마이페이지 </ a >
25- </ div >
26- </ nav >
27- </ header >
284
29- < main > {% block content %} {% endblock %}</ main >
5+ < head >
6+ < meta charset ="UTF-8 " />
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
8+ < title > Moodico"</ title >
9+ < link rel ="stylesheet " href ="{% static 'css/style.css' %} " />
10+ < style >
11+ body {
12+ cursor : url ("{% static 'images/purple_cursor.svg' %}" ),
13+ auto ;
14+ }
15+ </ style >
16+ {% block extra_head %}{% endblock %}
17+ </ head >
3018
31- < footer >
32- < p > © 2025 Moodico" All rights reserved.</ p >
33- </ footer >
34- < script src ="{% static 'js/main/main.js' %} "> </ script >
35- < script src ="{% static 'js/products/like_button.js' %} "> </ script >
36- {% block extra_js %}{% endblock %}
37- </ body >
38- </ html >
19+ < body >
20+ < header >
21+ < nav >
22+ < a href ="{% url 'main' %} " class ="logo " style ="text-decoration: none "> Moodico"</ a >
23+ < div class ="nav-links ">
24+ < a href ="{% url 'liked_products' %} " class ="nav-link liked-products-link ">
25+ 💖 찜한 아이템
26+ </ a >
27+ < a href ="{% url 'login' %} " class ="login-icon "> 👤 마이페이지 </ a >
28+ </ div >
29+ </ nav >
30+ </ header >
31+
32+ < main > {% block content %} {% endblock %}</ main >
33+
34+ < footer >
35+ < p > © 2025 Moodico" All rights reserved.</ p >
36+ </ footer >
37+ < script src ="{% static 'js/main/main.js' %} "> </ script >
38+ < script src ="{% static 'js/products/like_button.js' %} "> </ script >
39+ {% block extra_js %}{% endblock %}
40+ </ body >
41+
42+ </ html >
0 commit comments