mirror of
https://github.com/spacedeck/spacedeck-open.git
synced 2025-12-16 09:57:30 +01:00
initial commit.
This commit is contained in:
26
views/facebook.html
Normal file
26
views/facebook.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>[[space.name]]</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta property="og:title" content="[[space.name]]" />
|
||||
<meta property="og:description" content="" />
|
||||
<meta property="og:updated_time" content="[[space.updated_at.getTime()]]" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="[[space.thumbnail_url]]" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1>[[space.name]]</h1>
|
||||
{% for a in space.artifacts %}
|
||||
<tr>
|
||||
<td>[[ a.mime ]]</td>
|
||||
<td>[[ a.description | striptags ]]</td>
|
||||
<td>{% if a.payload_uri %}<a href="[[ a.payload_uri ]]">download</a>{% endif %}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user