-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.erb
81 lines (80 loc) · 2.21 KB
/
template.erb
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
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title><%= @title %></title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="body">
<div>
<div style="height:10px;background-color:#6678b8">
</div>
<div style="height:3px;background-color:#ffffff">
</div>
<div style="height:3px;background-color:#6678b8">
</div>
<div style="height:20px;background-color:#ffffff">
</div>
</div>
<header>
<a id="title" href="./index.html"><%= @title %></a>
</header>
<div>
<div style="height:20px;background-color:#ffffff">
</div>
<div style="height:40px;background-color:#c9d0e6">
</div>
</div>
<p class="description">
<%= @description %>
</p>
<div class="container">
<div class="side">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- kuee_exam_top -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-2014245102465645"
data-ad-slot="9060819818"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="contents">
<ul>
<% folders.each do |f| %>
<li>
<%= "<a href=#{f["fileId"].to_s}.html>" %>
<%= f["name"] %>
</a>
</li>
<% end %>
<% files.each do |f| %>
<li>
<%= "<a href=https://drive.google.com/file/d/#{f["fileId"].to_s}>" %>
<%= f["name"] %>
</a>
</li>
<% end %>
</ul>
<%= "<a href=https://drive.google.com/drive/u/0/folders/#{parent.to_s}>" %>
このフォルダを開く
</a>
</div>
</div>
<aside>
Generated by <a href="https://github.com/shiba6v/kakomon-site-generator">kakomon-site-generator</a>
</aside>
<div>
<div style="height:3px;background-color:#6678b8">
</div>
<div style="height:3px;background-color:#ffffff">
</div>
<div style="height:10px;background-color:#6678b8">
</div>
</div>
</div>
</body>
</html>