-
Notifications
You must be signed in to change notification settings - Fork 41
/
gallery.html
101 lines (81 loc) · 3.04 KB
/
gallery.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
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>OpenSCAD - Gallery</title>
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/fonts/open-sans/all.css" rel="stylesheet">
<link href="assets/fontawesome/css/brands.min.css" rel="stylesheet">
<link href="assets/fontawesome/css/fontawesome.min.css" rel="stylesheet">
<script src="assets/js/jquery-1.9.1.min.js"></script>
<!-- One-Page-Nav -->
<script src="assets/js/jquery.scrollTo.js"></script>
<!--waypoints-->
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/waypoints-sticky.min.js"></script>
<script src="assets/js/gallery.js"></script>
<script src="assets/js/header.js"></script>
<script>
function gallery(data) { _gallery = data; }
</script>
<script type="text/javascript" src="https://files.openscad.org/lists/gallery.jsonp"></script>
</head>
<body>
<div id="page-wrap">
<header>
<div class="clear"></div>
<div id="logo" class="left"></div>
<div id="donate" class="right">
<a href="https://opencollective.com/openscad/donate" target="_blank">
<img src="assets/img/donate-opencollective.png" alt="Donate on Opencollective" width="200" height="33">
</a>
</div>
<div id="title" style="margin-top:35px; width:620px;">
<h1 class="title" style="position:relative;"><span class="green">Open</span>SCAD</h1>
<h2 class="subtitle" style="position:relative; left:45px;">The Programmers Solid 3D CAD Modeller</h2>
</div>
<div id="navigation">
<div id="navigation-inner">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="news.html">News</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="libraries.html">Libraries</a></li>
<li class="current"><a href="gallery.html">Gallery</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="https://github.com/openscad/openscad/" target="_blank">GitHub</a></li>
</ul>
</div>
</div>
</header>
<div id="page-content">
<div id="sidebar" class="sticky">
<h1>Gallery</h1>
<ul>
<!-- <li><a href="#user-manual">Code Examples</a></li>-->
<li><a href="#gallery">OpenSCAD Gallery</a></li>
</ul>
<h1>#SCADvent</h1>
<ul>
<li><a href="https://fosstodon.org/tags/SCADvent">...on Fosstodon</a> <span class="fab fa-mastodon fa-xs"></span></li>
<li><a href="advent-calendar-2019/">2019 Advent Calendar</a></li>
<li><a href="advent-calendar-2020/">2020 Advent Calendar</a></li>
<li><a href="advent-calendar-2021/">2021 Advent Calendar</a></li>
<li><a href="advent-calendar-2022/">2022 Advent Calendar</a></li>
<li><a href="advent-calendar-2023/">2023 Advent Calendar</a></li>
</ul>
</div>
<article>
<section id="gallery" class="left">
<h1>OpenSCAD Gallery</h1>
</section>
</article>
<div class="clear"></div>
</div><!--#page-content end-->
<footer>
</footer>
</div><!--#page-wrap end-->
</body>
</html>