Skip to content

Commit 6238b79

Browse files
committed
3283d3d Add upload page
1 parent 0043e3a commit 6238b79

File tree

2 files changed

+180
-0
lines changed

2 files changed

+180
-0
lines changed

index.html

+5
Original file line numberDiff line numberDiff line change
@@ -1783,6 +1783,11 @@ <h3 class="wow fadeInUp delay-0-2s"> Made possible by you </h3>
17831783

17841784
</a>
17851785

1786+
<a href="https://opencollective.com/guest-5f1d018d" style="margin-right: 10px;">
1787+
<img src="https://images.opencollective.com/guest-5f1d018d/avatar/100.png" title="Sam Morley" class="wow fadeInUp delay-0-2s" />
1788+
1789+
</a>
1790+
17861791
<a href="https://opencollective.com/benjamin-dahl" style="margin-right: 10px;">
17871792
<img src="https://images.opencollective.com/benjamin-dahl/avatar/100.png" title="Benjamin Dahl" class="wow fadeInUp delay-0-2s" />
17881793

upload.html

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6+
<link rel="stylesheet" href="assets/css/normalize.css">
7+
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
8+
<link rel="stylesheet" href="assets/css/icofont.min.css">
9+
<link rel="stylesheet" href="assets/css/animate.min.css">
10+
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
11+
<link rel="stylesheet" href="assets/css/style.css">
12+
<link rel="stylesheet" href="assets/css/responsive.css">
13+
14+
<link rel="icon" type="image/png" href="assets/images/favicon.png">
15+
16+
<title>Upload - Private filesharing for issues</title>
17+
</head>
18+
<body class="home-page">
19+
<!--=== Start Header Section ===-->
20+
<header class="header-section">
21+
<nav class="navbar navbar-expand-lg navbar-light">
22+
<div class="container">
23+
<a class="navbar-brand" href="index.html">
24+
25+
<img src="assets/images/logo.png" alt="Logo">
26+
27+
</a>
28+
<a href="javascript:void(0);" class="mobile-menu">
29+
<div class="mobile-menu-btn">
30+
<i class="icofont-lg icofont-navigation-menu"></i>
31+
</div>
32+
</a>
33+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
34+
<ul class="navbar-nav">
35+
36+
<li class="nav-item">
37+
<a href="index.html" class="nav-link">home<span></span></a>
38+
</li>
39+
<li class="nav-item">
40+
<a href="downloads.html" class="nav-link">downloads<span></span></a>
41+
</li>
42+
<li class="nav-item">
43+
<a href="https://github.com/IfcOpenShell/IfcOpenShell/discussions" class="nav-link">forums<span></span></a>
44+
</li>
45+
<li class="nav-item">
46+
<a href="http://blog.ifcopenshell.org" class="nav-link">blog<span></span></a>
47+
</li>
48+
<li class="nav-item">
49+
<a href="https://docs.ifcopenshell.org" class="nav-link">documentation<span></span></a>
50+
</li>
51+
52+
</ul>
53+
<div class="menu-right-options ms-auto">
54+
<p>
55+
<strong class="amount-raised" style="margin-right: 5px;">$</strong> / $5,000 funded
56+
<a href="https://opencollective.com/opensourcebim">
57+
<span class="border-1">
58+
<span class="progress-bar" id="progress-bar" data-status="0%" aria-label="Progress bar."></span>
59+
</span>
60+
</a>
61+
</p>
62+
<ul class="social-media-links">
63+
64+
<li>
65+
<a href="https://twitter.com/aothms" target="_blank" class="btn btn-primary">
66+
<i class="icofont-twitter"></i>
67+
</a>
68+
</li>
69+
70+
<li class="github-icon">
71+
<a href="https://github.com/ifcopenshell/ifcopenshell" target="_blank" class="">Github Icon</a>
72+
</li>
73+
</ul>
74+
</div>
75+
</div>
76+
</div>
77+
</nav>
78+
</header>
79+
<!--=== Start Menu Slide Bar ===-->
80+
<aside class="menu-slide-bar">
81+
<div class="close-mobile-menu">
82+
<div class="mobile-logo">
83+
<a href="index.html" class="mobile-logo">
84+
85+
<img src="assets/images/logo.png" alt="Logo">
86+
87+
</a>
88+
</div>
89+
<a href="javascript:void(0);" class="close-btn">
90+
<i class="icofont-close-line"></i>
91+
</a>
92+
</div>
93+
<nav class="side-mobile-menu">
94+
<ul id="mobile-menu-active">
95+
96+
<li class="nav-item">
97+
<a href="index.html" class="nav-link">home<span></span></a>
98+
</li>
99+
<li class="nav-item">
100+
<a href="downloads.html" class="nav-link">downloads<span></span></a>
101+
</li>
102+
<li class="nav-item">
103+
<a href="https://github.com/IfcOpenShell/IfcOpenShell/discussions" class="nav-link">forums<span></span></a>
104+
</li>
105+
<li class="nav-item">
106+
<a href="http://blog.ifcopenshell.org" class="nav-link">blog<span></span></a>
107+
</li>
108+
<li class="nav-item">
109+
<a href="https://docs.ifcopenshell.org" class="nav-link">documentation<span></span></a>
110+
</li>
111+
112+
</ul>
113+
</nav>
114+
</aside>
115+
<div class="body-overlay"></div>
116+
<!--=== End Menu Slide Bar ===-->
117+
<!--=== Start Banner Section ===-->
118+
<section class="bg-color-fff1f2">
119+
<div class="container community-header">
120+
<div class="row">
121+
<div class="col-lg-12">
122+
<div class="banner-section">
123+
<div class="side-border side-border-inner wow fadeInUp delay-0-4s"></div>
124+
<div class="banner-content">
125+
<h1 class="wow fadeInUp delay-0-2s"> Upload </h1>
126+
<h2 class="up-title wow fadeInUp delay-0-4s"> Share files for private bugreporting </h2>
127+
</div>
128+
</div>
129+
<p>
130+
If you have a private file to share in regards to an issue, you can upload it via this <a href="https://forms.gle/hmeWGHCSydeuB9nJ6">Google Forms link</a>. Your private file will be accessible only to core IfcOpenShell developers, and will be deleted after the issue is resolved.
131+
<script type="text/javascript">window.location.replace("https://forms.gle/hmeWGHCSydeuB9nJ6");</script>
132+
</p>
133+
</div>
134+
</div>
135+
</section>
136+
<!--=== End Banner Section ===-->
137+
<div class="footer-section copy-wrap">
138+
<div class="container">
139+
<div>
140+
<div class="back-to-top text-center">
141+
<i class="icofont-simple-up"></i>
142+
</div>
143+
<div class="text-center">
144+
<img src="assets/images/partner/partner-11.png" alt="Partner" class="" />
145+
</div>
146+
<div class="row">
147+
<div class="col-lg-8">
148+
149+
<p class="footer-left-text"><a href="https://ifcopenshell.org"><span> IfcOpenShell </span></a> is a free software project by amazing volunteers. You can <a href="https://github.com/ifcopenshell/ifcopenshell/"><span> be one too! </span></a></p>
150+
151+
</div>
152+
<div class="col-lg-4 text-right">
153+
<img src="assets/images/footer-logo.png" alt="Footer Logo" class="footer-logo" />
154+
<div class="pull-right">
155+
<h5><a href="https://ifcopenshell.org">IfcOpenShell</a></h5>
156+
<p>
157+
The open source IFC toolkit <br> and geometry engine
158+
</p>
159+
</div>
160+
</div>
161+
</div>
162+
</div>
163+
</div>
164+
</div>
165+
<!--=== End Footer Section ===-->
166+
<!--=== JS Link ===-->
167+
<script src="assets/js/jquery.min.js"></script>
168+
<script src="assets/js/owl.carousel.js"></script>
169+
<script src="assets/js/bootstrap.bundle.min.js"></script>
170+
<script src="assets/js/mobile-menu.js"></script>
171+
<script src="assets/js/wow.min.js"></script>
172+
<script src="assets/js/main.js"></script>
173+
<!-- jquery end -->
174+
</body>
175+
</html>

0 commit comments

Comments
 (0)