-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdates.php
69 lines (57 loc) · 2.03 KB
/
updates.php
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
<?php
$page_title = "TJ REVERB - Updates";
?>
<!DOCTYPE html>
<html lang="en">
<?php require("inc/head.php"); ?>
<body>
<div id="fb-root"></div>
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = 'https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2';
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div id="page">
<div class="site-wrapper">
<?php require("inc/header.php"); ?>
<section class="updates-container container py-4">
<div data-aos="fade" data-aos-delay="1000" class="row">
<div class="col-md-6 py-2">
<h1>Facebook</h1>
<div class="fb-page mx-auto"
data-href="https://www.facebook.com/TJCubeSat/"
data-tabs="timeline"
data-small-header="false"
data-adapt-container-width="true"
data-hide-cover="false"
data-show-facepile="true"
data-width="1000"
data-height="70vh">
<blockquote cite="https://www.facebook.com/TJCubeSat/" class="fb-xfbml-parse-ignore">
<a href="https://www.facebook.com/TJCubeSat/">
Posts by TJ REVERB
</a>
</blockquote>
</div>
</div>
<div class="col-md-6 py-2">
<h1>Twitter</h1>
<a class="twitter-timeline"
href="https://twitter.com/TJ_REVERB?ref_src=twsrc%5Etfw"
data-height="70vh">
Tweets by TJ REVERB
</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</section>
<?php require("inc/footer.php"); ?>
</div>
</div>
<?php require("inc/imports-js.php"); ?>
</body>
</html>