-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdesign.ref
More file actions
79 lines (76 loc) · 2.46 KB
/
design.ref
File metadata and controls
79 lines (76 loc) · 2.46 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
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
[Game]
Logo=River Raid
StyleSheet=skoolkit.css;design/theme.css
JavaScript=design/theme.js
[Template:Layout]
<!DOCTYPE html>
<html lang="en">
<head>
<title>{Game[Game]}: {SkoolKit[title]}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<# foreach($css,SkoolKit[stylesheets]) #>
<link rel="stylesheet" type="text/css" href="{$css[href]}" />
<# endfor #>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
<# foreach($js,SkoolKit[javascripts]) #>
<script type="text/javascript" src="{$js[src]}"></script>
<# endfor #>
</head>
<body class="{SkoolKit[page_id]}">
<a class="github-fork-ribbon fixed" href="https://github.com/river-raid/river-raid-disasm" data-ribbon="Fork me on GitHub" title="Fork me on GitHub" target="_blank" rel="noopener">Fork me on GitHub</a>
<table class="header">
<tr>
<# if(SkoolKit[page_header][0]) #>
<td class="page-header">{SkoolKit[page_header][0]}</td>
<# endif #>
<# if(SkoolKit[page_id]=='GameIndex') #>
<td class="logo">{Game[Logo]}</td>
<# else #>
<td class="logo"><a href="{SkoolKit[index_href]}">{Game[Logo]}</a></td>
<# endif #>
<td class="page-header">{SkoolKit[page_header][1]}</td>
</tr>
</table>
<div class="page-content">
<# include({SkoolKit[include]}) #>
<# include(footer) #>
</div>
</body>
</html>
[Template:GameIndex]
<!DOCTYPE html>
<html lang="en">
<head>
<title>{Game[Game]}: {SkoolKit[title]}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="theme.css" />
</head>
<body class="{SkoolKit[page_id]}">
<a class="github-fork-ribbon fixed" href="https://github.com/river-raid/river-raid-disasm" data-ribbon="Fork me on GitHub" title="Fork me on GitHub" target="_blank" rel="noopener">Fork me on GitHub</a>
<div class="container">
<header>
<div class="eyebrow">ZX Spectrum 48K · 1984 · Activision</div>
<div class="game-title">River Raid</div>
<div class="subtitle">Complete RAM Disassembly</div>
</header>
<div class="river-divider"></div>
<# include({SkoolKit[include]}) #>
<# include(footer) #>
</div>
</body>
</html>
[Template:GameIndex-home]
<nav>
<# foreach($section,sections) #>
<div class="section">
<div class="section-label">{$section[header]}</div>
<div class="link-grid">
<# foreach($item,$section[items]) #>
<a class="link-card" href="{$item[href]}">{$item[link_text]}</a>
<# endfor #>
</div>
</div>
<# endfor #>
</nav>