This repository has been archived by the owner on Dec 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (149 loc) · 5.96 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<!--
vr.maunium.net - A collection of sorted VR-related research papers.
Copyright (C) 2016 Tulir Asokan
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<html lang="en">
<head>
<title>Maunium VR</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
<meta property="og:title" content="Maunium VR"/>
<meta property="og:description" content="A collection of VR-related papers"/>
<meta property="og:url" content="https://vr.maunium.net/"/>
<meta property="og:image" content="https://vr.maunium.net/favicon.ico"/>
</head>
<body>
<div class="container">
<br/><br/><br/>
<div class="jumbotron">
<a href="#" style="color: inherit;"><h1>A collection of VR-related papers</h1></a>
<p>
Website developed for
<a href="final.pdf">A literature review of the effects and use cases of virtual reality</a>
</p>
</div>
<div class="search">
<div class="box">
<input type="text" id="search" placeholder="Enter search query"/>
</div>
<div class="options">
<b>Default search areas:</b>
<input type="checkbox" id="search-title" checked/>
<label for="search-title">Title</label>
<input type="checkbox" id="search-tags" checked/>
<label for="search-tags">Tags</label>
<input type="checkbox" id="search-authors" checked/>
<label for="search-authors">Authors</label>
<input type="checkbox" id="search-language"/>
<label for="search-language">Language</label>
<input type="checkbox" id="search-release"/>
<label for="search-release">Release Year</label>
<input type="checkbox" id="search-abstract" checked/>
<label for="search-abstract">Abstract</label>
<br/>
<b>Miscellaneous options:</b>
<input type="checkbox" id="search-instant" checked/>
<label for="search-instant">Instant search</label>
</div>
</div>
<div class="card-columns" id="data"></div>
</div>
<div id="templates">
<script type="text/x-handlebars" id="paper">
<div class="card">
<div class="card-block">
<h4 class="card-title">{{title}}</h4>
<h6 class="card-subtitle mb-2 text-muted">
<span class="authors">
{{#if tooManyAuthors}}
<span class="primary-author">
<a class="text-muted" href='javascript:addToSearchQuery("author", "{{mainAuthor}}")'>{{mainAuthor}}</a>
<a href="javascript:void('Toggle full author list')" onclick="toggleFullView($(this))">et al.</a>,
</span>
<span class="all-authors hidden">
{{#each authors}}
<a class="text-muted" href='javascript:addToSearchQuery("author", "{{this}}")'>{{this}}</a>,
{{/each}}
<a href="javascript:void('Toggle full author list')" onclick="toggleFullView($(this))">close</a>
</span>
{{else if manyAuthors}}
{{#each authors}}
<a class="text-muted" href='javascript:addToSearchQuery("author", "{{this}}")'>{{this}}</a>,
{{/each}}
{{else}}
<a class="text-muted" href='javascript:addToSearchQuery("author", "{{mainAuthor}}")'>{{mainAuthor}}</a>,
{{/if}}
</span>
{{#if release}}
(<a class="text-muted" href='javascript:addToSearchQuery("release", "{{release}}")'>{{release}}</a>)
{{/if}}
</h6>
<p class="card-text">
{{#if shortAbstract}}
<span class="short-abstract">
{{{shortAbstract}}}...
<br/>
<a href="javascript:void('Toggle full abstract')" onclick="toggleFullView($(this))">Read more</a>
</span>
<span class="full-abstract hidden">
{{{abstract}}}
<br/>
<a href="javascript:void('Toggle full abstract')" onclick="toggleFullView($(this))">View less</a>
</span>
{{else}}
{{{abstract}}}
{{/if}}</p>
<a href="{{url}}" class="btn btn-primary">
{{#if hasFullText}}
Open full text
{{else}}
Open link
{{/if}}
</a>
{{#if allowCachedPDFLink}}
{{#if cachedPDFLinkName}}
<!--
Please note that the cached files MUST NOT be used for any non-
personal purposes regardless of what the original license may
allow.
Sharing the links or the method to view the links to any files
in this cache is NOT permitted.
Download the file from the live version if you wish to use it
for something other than personal purposes.
-->
<a href="cache/{{cachedPDFLinkName}}.{{cacheFormat}}" class="btn btn-primary">Open cached full text</a>
{{/if}}
{{/if}}
</div>
<div class="card-footer">
<b>Language:</b> <a href='javascript:addToSearchQuery("lang", "{{language}}")' style="color: inherit;">{{language}}</a><br/>
{{#if tags}}
<b>Tags:</b>
{{#each tags}}
<a href='javascript:addToSearchQuery("tag", "{{this}}")' class="badge badge-default">{{this}}</a>
{{/each}}
{{/if}}
</div>
</div>
</script>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/handlebarsjs/4.0.5/handlebars.min.js"></script>
<script src="index.js"></script>
</body>
</html>