This repository has been archived by the owner on Aug 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
custom.html
76 lines (60 loc) · 2 KB
/
custom.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
<template name="custom_post_title">
<a class="custom_post_title" href="{{custom_link}}">{{custom_title}}</a>
<br/>
<p class="custom_post_headline">
{{services_headline}}
</p>
</template>
<template name="custom_post_domain">
</template>
<template name="custom_post_thumbnail">
{{#if isEmpty services_thumbnail}}
<a href="/posts/{{this._id}}/{{this.slug}}">
<div class="post-thumbnail-container post-thumbnail" style="background-image:url( {{services_thumbnail}} )">
<div class="post-thumbnail-loading">{{>spinner}}</div>
</div>
</a>
{{/if}}
</template>
<template name="custom_post_body">
<div class="post-body markdown" aria-live="polite">
<div class="col_sm-description">
{{services_abstract}}
</div>
<div class="col-container">
<div class="col-sm-4" style="padding-left:0px;margin-left:0px;margin-right:0px;">
<div class="col_header"><a href="{{services_arxiv_url}}">arXiv</a></div>
<p class="markdown" aria-live="polite">
{{#markdown}}{{services_arxiv_abstract}}{{/markdown}}
<br/>
<strong><a href="{{services_arxiv_url}}">Read more...</a></strong>
</p>
</div>
<div class="col-sm-4" style="background-color:#f9f9f9;margin-right:0px;">
<div class="col_header"><a href="{{services_github_url}}">GitHub</a></div>
<p class="markdown" aria-live="polite">
{{#markdown}}{{services_github_abstract}}{{/markdown}}
<br/>
<strong><a href="{{services_github_url}}">Read more...</a></strong>
</p>
<p>
<strong>Dependencies:</strong><br/>
<ul>
{{#each services_github_dependencies}}
<li>{{this}}</li>
{{/each}}
</ul>
</p>
<hr/>
</div>
<div class="col-sm-4" style="padding-right:0px;margin-right:0px;">
<div class="col_header">Links</div>
<ul>
{{#each services_links}}
<li><a href="{{this}}">{{this}}.</a></li>
{{/each}}
</ul>
</div>
</div>
</div>
</template>