-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrealtime-github-activity.html
88 lines (84 loc) · 4.14 KB
/
realtime-github-activity.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
<!DOCTYPE html>
<!--
_______________________________________________________________
________| |_________
\ | Curiosity killed the cat, but satisfaction brought it back 😼 | /
\ | | /
\ | GitHub repo: https://github.com/HiDeaUp/PierreHenry.be | /
/ |_______________________________________________________________| \
/___________) (___________\
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>GitHub Activity - Pierre-Henry Soria</title>
<link rel="stylesheet" href="./static/css/common.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/octicons/3.1.0/octicons.min.css" />
<link rel="stylesheet" href="./static/css/github-activity.css" />
<link rel="icon" href="./favicon.ico" />
</head>
<body id="english">
<div id="container">
<header>
<h1>My Real-Time GitHub Activity 😊</h1>
</header>
<section>
<div id="github-feed"></div>
</section>
<footer>
<p>
<span role="img" aria-label="Speak to me">🔈</span> Speak with me at <a href="mailto:hi@ph7.me" rel="nofollow"><i>hi</i>@<abbr title="Pierre-Henry">PH</abbr><abbr title="pH Neutral">7</abbr>.<i>me</i></a>
</p>
<div class="social-icon center">
<a href="https://github.com/pH-7" target="_blank" rel="noopener">
<img src="static/img/icon/github.svg" alt="GitHub Profile">
</a>
<a href="https://www.linkedin.com/in/ph7enry/" target="_blank" rel="noopener">
<img src="static/img/icon/linkedin.svg" alt="LinkedIn Profile">
</a>
<a href="https://medium.com/@phenrysay" target="_blank" rel="noopener">
<img src="static/img/icon/medium.svg" alt="Medium Account">
</a>
<a href="https://www.goodreads.com/phenry" target="_blank" rel="noopener">
<img src="static/img/icon/goodreads.svg" alt="Goodreads Profile">
</a>
<a href="https://twitter.com/phenrysay" target="_blank" rel="noopener">
<img src="static/img/icon/twitter.svg" alt="Twitter Account">
</a>
<a href="https://unsplash.com/@pierrehenry" target="_blank" rel="noopener">
<img src="static/img/icon/unsplash.svg" alt="Unsplash Page">
</a>
</div>
<p>
Thanks for stopping by! 😅
</p>
<p class="italic">
<span id="copyrightYear"></span> Coded with LOTS of <span role="img" aria-label="love">❤️</span> by <a href="https://ph7.me">Pierre-Henry Soria</a> :)
</p>
<p>
<a hreflang="en" href="https://pierrehenry.be" title="Homepage">
Return to Homepage
</a> ∙
<a hreflang="en" href="now.html" title="What I'm Doing Now">
What I'm Doing Now
</a> ∙
<a hreflang="fr-be" href="https://pierrehenry.be/developpeur-web-mobile.html" title="French version">
<span role="img" aria-label="French version">🇫🇷</span> Français
</a>
</p>
</footer>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/mustache.js/3.0.1/mustache.min.js"></script>
<script src="./static/js/github-activity.js"></script>
<script>
GitHubActivity.feed({
username: "pH-7",
selector: "#github-feed",
limit: 50
});
</script>
<script>document.getElementById('copyrightYear').innerHTML=(new Date).getFullYear()</script>
</body>
</html>