Welcome to mirror list, hosted at ThFree Co, Russian Federation.

openGraph.handlebars « templates « js - github.com/nextcloud/activity.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f67491a50055640e4855a25460ed4b133d69a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{#if link}}
	<a href="{{link}}">
{{/if}}
	<div id="opengraph-{{id}}" class="opengraph">
		{{#if thumb}}
			<div class="opengraph-thumb" style="background-image: url('{{thumb}}')"></div>
		{{/if}}
		<div class="opengraph-name {{#if thumb}}opengraph-with-thumb{{/if}}">{{name}}</div>
		<div class="opengraph-description {{#if thumb}}opengraph-with-thumb{{/if}}">{{description}}</div>
		<span class="opengraph-website">{{website}}</span>
	</div>
{{#if link}}
	</a>
{{/if}}