-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlanding.tpl.html
62 lines (51 loc) · 2.41 KB
/
landing.tpl.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
<div class="page landing">
<div class="top-screen" layout="row" layout-align="center center">
<div class="content">
<div class="tagline">
<h1>All research products deserve credit.</h1>
<p class="subtagline">
Get the correct citation for diverse research products,
from software and datasets to preprints and articles.
</p>
</div>
<div class="user-input">
<form class="input-row" ng-submit="submit()">
<md-input-container md-no-float
class="md-block example-selected-{{ main.exampleSelected }}"
flex-gt-sm="">
<label>Paste a URL, DOI, arXiv ID, or any search term (e.g. software
name/abbreviation)</label>
<input ng-model="main.id">
<md-button ng-show="main.id"
ng-class="{fadeOut: !main.id}"
ng-click="submit()"
class="md-fab md-mini md-primary go animated fadeInRightBig">
<i class="fa fa-arrow-right"></i>
</md-button>
<!--
<md-button class="md-raised md-primary submit" type="submit">
Get the citation
</md-button>
-->
</md-input-container>
</form>
<div class="example">
<div class="content">
Examples:
<ul class="examples">
<li>
<a href="/cite/http://yt-project.org">http://yt-project.org</a>
</li>
<li>
<a href="/cite/https://cran.r-project.org/web/packages/stringr">https://cran.r-project.org/web/packages/stringr</a>
</li>
<li>
<a href="https://github.com/ourresearch/citeas-api/blob/master/README.md">More examples</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>