Update page_template for participant pages

This commit is contained in:
Hyunchul Kim 2020-11-19 01:24:17 +09:00
parent 108294b1e7
commit ba5c9432d5

View file

@ -5,50 +5,69 @@ html_head = """
<!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi --> <!-- Generated with distribusi https://git.vvvvvvaria.org/varia/distribusi -->
<meta name="generator" content="distribusi" /> <meta name="generator" content="distribusi" />
<meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="https://frog2.dianaband.info/src/style/common.css" /> <meta name="viewport" content="width=device-width, initial-scale=1">
%s %s
<link rel="stylesheet" type="text/css" href="/src/style/common.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="/src/scripts/mobileScroll.js"></script>
</head> </head>
<body> <body>
<div> <div>
<div id="menu"> <div id="menu">
<div id="logo_wrapper" class="svg_wrapper"> <div id="logo_wrapper" class="svg_wrapper">
<img id="logo_foh"src="https://frog2.dianaband.info/src/img/logo.svg" alt="환대의 조각 로고"> <a href="/index.html">
<img id="logo_foh"src="/src/img/logo.svg" alt="환대의 조각 로고">
</a>
</div> </div>
<div id="about_icon_wrapper" class="svg_wrapper"> <span id="to_about">
<img id="about_icon"src="https://frog2.dianaband.info/src/img/icon_about.svg" alt="각진 꽃 모양 어바웃 버튼"> <a href="/about.html">
ABOUT
</a>
</span>
<span id="to_fragments">
<a href="/participants.html">
FRAGMENTS
</a>
</span>
<span id="to_timeline">
<a href="#">
TIMELINE
</a>
</span>
</div>
<div id="margin">
<!-- to avoid overlapping -->
</div>
<div id="wrapper_author">
<div id="fragment_wrapper">
</div>
<div id="introduction">
</div> </div>
<div id="timeline_icon_wrapper" class="svg_wrapper"> <div id="archive">
<img id="about_icon"src="https://frog2.dianaband.info/src/img/icon_timeline.svg" alt="구름 모양 타임라인 버튼"> <button id="archive_button">ARCHIVE
<img id="icon_archive_more" src="/src/img/icon_timeline.svg" alt="">
</button>
<div id="archive_list">
<a href="#">조각#1234</a>
</div>
</div> </div>
</div>
<span id="to_about"> <div id="contents">
<a href=""> <div id="frags">
ABOUT
</a>
</span>
<span id="to_fragments">
<a href="">
FRAGMENTS
</a>
</span>
<span id="to_timeline">
<a href="">
TIMELINE
</a>
</span>
</div>
<div id="margin">
<!-- to avoid overlapping -->
</div>
<div id="contents">
""" """
html_footer = """ html_footer = """
</div>
</div>
</div> </div>
<script src="/src/scripts/updateIntroduction.js"></script>
<script src="/src/scripts/updateArchive.js"></script>
</body> </body>
</html> </html>
""" """