Skip to content

Commit d515c25

Browse files
committed
Showcase for may 2021 (#50)
1 parent 90f4bec commit d515c25

File tree

3 files changed

+102
-1
lines changed

3 files changed

+102
-1
lines changed

showcase/2021/may/index.html

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
7+
<!-- Our trusty markdown stylesheet -->
8+
<link rel="stylesheet" href="/css/github-markdown.css" />
9+
<link rel="stylesheet" href="/css/utils.css" />
10+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
11+
12+
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
13+
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
14+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
15+
16+
<!-- Load markdeep and set it to not automatically render markdown -->
17+
<script>markdeepOptions = { mode: 'script', tocStyle: 'none' };</script>
18+
<script src="/scripts/markdeep.min.js"></script>
19+
20+
<title>May 2021 Showcase</title>
21+
22+
<!-- Open Graph Metadata -->
23+
<meta property="og:title" content="May 2021 Showcase" />
24+
<meta property="og:type" content="website" />
25+
<meta property="og:url" content="https://graphics-programming.org/showcase/2021/may/" />
26+
<meta property="og:image" content="https://imgur.com/FT9MQWk.png" />
27+
<meta property="og:description" content="Graphics Programming Community created content showcase for May 2021" />
28+
</head>
29+
30+
<body>
31+
<code style="display:none" id="content">
32+
# May 2021 Community Creation Showcase
33+
34+
<nav class="mx-auto text-center">
35+
[Home](/) &bull; [Resources](/resources) &bull; [Showcase](/showcase)
36+
</nav>
37+
38+
![](https://imgur.com/SLoINSR.png)
39+
<center>
40+
Created by @Cewein#2933
41+
</center>
42+
43+
<hr />
44+
45+
![](https://imgur.com/XS67hAu.mp4)
46+
<center>
47+
Created by @SantaIsASledDriver#6660
48+
</center>
49+
50+
<hr />
51+
52+
![](https://imgur.com/hykdYiC.png)
53+
<center>
54+
Created by User @snurf#1314
55+
</center>
56+
57+
<hr />
58+
59+
![](https://imgur.com/FT9MQWk.png)
60+
<center>
61+
Created by @Nameless#1608
62+
</center>
63+
64+
<hr />
65+
66+
![](https://imgur.com/XRCAP6U.png)
67+
<center>
68+
Created by @Lain#1999
69+
</center>
70+
71+
<hr />
72+
73+
<p>
74+
All media in this showcase are taken from the #showcase-media channel on the server. If you'd like to have
75+
a chance to have your image seen here, post your creations in the channel.
76+
</p>
77+
78+
</code>
79+
80+
<!-- Finally render the markdown and display it -->
81+
<script>
82+
var formatted = markdeep.format(document.getElementById('content'));
83+
var contents = $.parseHTML(formatted);
84+
$('body').add('span').addClass('container').add(contents);
85+
$('#content').after(contents);
86+
</script>
87+
</body>
88+
89+
</html>

showcase/2021/showcase_preview.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@
2323
April
2424
</a>
2525
</div>
26+
<div class="w-25 showcase-preview-element">
27+
<a href="/showcase/2021/may/" class="showcase-preview-link showcase-preview-element">
28+
<img src="https://imgur.com/FT9MQWk.png" class="showcase-preview-element-img" onload="resizeBestOfTheYear();" />
29+
May
30+
</a>
31+
</div>
2632
</div>

showcase/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
<script src="/scripts/markdeep.min.js"></script>
1919
<script src="/scripts/include.js"></script>
2020
<script src="/scripts/resize.js"></script>
21+
22+
<meta property="og:title" content="Graphics Programming Showcase" />
23+
<meta property="og:type" content="website" />
24+
<meta property="og:url" content="https://graphics-programming.org/showcase/" />
25+
<meta property="og:image" content="https://imgur.com/FT9MQWk.png" />
26+
<meta property="og:description" content="Graphics Programming Community created content showcase" />
2127

2228
<title>Showcase</title>
2329
</head>
@@ -30,7 +36,7 @@
3036
[Home](/) &bull; [Resources](/resources) &bull; [Showcase](/showcase)
3137
</nav>
3238

33-
[View the Latest Showcase](/showcase/2021/april)
39+
[View the Latest Showcase](/showcase/2021/may)
3440

3541
## [2021](/showcase/2021)
3642
<div w3-include-html="/showcase/2021/showcase_preview.html"></div>

0 commit comments

Comments
 (0)