-
Notifications
You must be signed in to change notification settings - Fork 7
/
press.html
99 lines (68 loc) · 2.21 KB
/
press.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>PRESS KIT</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="presskit_styles.css" />
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<script type="text/javascript">
var projectDetails = {
'title': 'project name', // the title of the project
'subTitle': 'project subtitle', // the subtitle of the project
'link': 'http://www.url.com', // link to the project landig page
'creators': [ // supports multiple creators. just add more objects to the array
{
'name': 'name',
'portfolio': 'http://www.url.com',
'email': '[email protected]',
'twitter': 'http://www.twitter.com/name'
},
{
'name': 'name',
'portfolio': 'http://www.url.com',
'email': '[email protected]',
'twitter': 'http://www.twitter.com/name'
},
],
'about': [
'paragraph 01',
'paragraph 02',
],
'videos': [ // supports multiple videos. just add more objects to the array
{
'embedUrl': 'http://www.url.com', // e.g. https://www.youtube.com/embed/GjYENsrLLf4
'videoPage': 'http://www.url.com' // e.g. https://www.youtube.com/watch?v=GjYENsrLLf4
},
{
'embedUrl': 'http://www.url.com', // e.g. https://www.youtube.com/embed/GjYENsrLLf4
'videoPage': 'http://www.url.com' // e.g. https://www.youtube.com/watch?v=GjYENsrLLf4
},
],
'gifs': [ // supports multiple gifs. just add more objects to the array
{
'gifUrl': 'http://www.url.com'
},
{
'gifUrl': 'http://www.url.com'
},
],
'photos': [ // supports multiple photos. just add more objects to the array
{
'photoUrl': 'http://www.url.com'
},
{
'photoUrl': 'http://www.url.com'
},
],
'footer': [{
'footerText': "PressKit.js",
'footerLink': "https://github.com/dodiku/PressKit.js"
}, ],
}
</script>
<script type="text/javascript" src="presskit.js"></script>
</body>
</html>