-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 2.85 KB
/
index.html
File metadata and controls
98 lines (86 loc) · 2.85 KB
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.2/dist/mastodon-timeline.min.css" integrity="sha256-1UGgxsonaMCfOEnVOL89aMKSo3GEAmaRP0ISbsWa6lU=" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@idotj/mastodon-embed-timeline@4.4.2/dist/mastodon-timeline.umd.js" integrity="sha256-E6WPG6iq+qQIzvu3HPJJxoAeRdum5siq13x4ITjyxu8=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.css" />
<link href="https://fonts.googleapis.com/css?family=Lato:900i|Roboto&display=swap" rel="stylesheet" />
<title>GitPub</title>
<style>
body{
font-family: 'Roboto', sans-serif !important;
background: #e8e8e8;
}
html {
background: #e8e8e8;
}
.timeline-Tweet-text {
font-family: 'Roboto', sans-serif !important;
}
p {
margin-bottom: 0.3rem;
}
.about-column {
margin-top: 8px;
}
.subtitle {
color: #888;
}
h1.title {
font-size: 3rem;
}
h1 {
font-size: 1.5rem;
font-family: 'Lato', sans-serif;
}
.card {
background: #fff;
margin: 1rem;
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
</style>
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">
<span class="has-text-info">Git</span><span class="has-text-danger">Pub</span>
</h1>
<p class="subtitle">
Geeks in the Pub
</p>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column about-column">
<h1>About GitPub</h1>
<p>Geeks in the Pub is a meeting of developers and engineers in Sheffield. We meet on the 1st Wednesday of every month at a different pub each month. You can find out about the next meeting at our <a href="https://mastodon.social/@gitpub">Mastodon</a>, also displayed to the right.</p>
<p>Geeks in the pub is organised by @davidjmemmett, @ClearCarbon and Jack.</p>
</div>
<div class="column">
<div class='box card'>
<div id="mt-container" class="mt-container">
<div class="mt-body" role="feed">
<div class="mt-loading-spinner"></div>
</div>
</div>
<script>
const myTimeline = new MastodonTimeline.Init({
instanceUrl: "https://mastodon.social/",
timelineType: "profile",
userId: "109496353292929001",
profileName: "@gitpub",
maxNbPostFetch: "20",
maxNbPostShow: "5",
});
</script>
</div>
</div>
</div>
</div>
</section>
<body>
</html>