-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavbar.html
More file actions
42 lines (41 loc) · 2.92 KB
/
navbar.html
File metadata and controls
42 lines (41 loc) · 2.92 KB
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
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<a class="navbar-brand" href="./">
作家の手帖
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./vol1.html">準備1号</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
リーガル
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="organization_reg.html">01 文筆生活向上委員会 団体規約</a>
<a class="dropdown-item" href="https://drive.google.com/file/d/1WsepWk4eHWBkzfZl8YbPYT5Vbz7ohp3_/view?usp=sharing" target="_blank">02 業務委託共通規約(仕様書項目、個人情報保護特約を含む)</a>
<a class="dropdown-item" href="https://drive.google.com/file/d/1BKshtFNewRM5ssBs4eacLcnWLxuYOwWS/view?usp=sharing" target="_blank">03 業務委託仕様書(執筆者向けひな型・記入例)</a>
<a class="dropdown-item" href="https://drive.google.com/file/d/1_Mz_LrDtiFTLnys7hQL_QQ0ixjgT8O4b/view?usp=sharing" target="_blank">04 「作家の手帖」発注書(テンプレート)</a>
<a class="dropdown-item" href="https://drive.google.com/file/d/1sdMW6EdLK1p4aA9PHed0taeW_L3otoYH/view?usp=sharing" target="_blank">05 「作家の手帖」参加規約</a>
<a class="dropdown-item" href="https://drive.google.com/file/d/1ZODNOIVU4Qmu_jOpr68ruonYXJYiKA05/view?usp=sharing" target="_blank">06 「作家の手帖」プライバシーポリシー</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://writer-life-committee.github.io/authors-note/" target="_blank">旧ウェブサイト</a>
</li>
</ul>
<div class="form-inline my-2 my-lg-0"></div>
<div class="btn-right">
<button type="button" onclick="location.href='https://authors-note.stores.jp/items/65575419be9f7e14443673f1'" class="btn btn-danger">購読する</button>
</div>
</div>
</div>
</div>
</nav>