-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
144fffb
commit d800282
Showing
5 changed files
with
177 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<!DOCTYPE html | ||
><!-- This site was created in Webflow. http://www.webflow.com --> | ||
<!-- Last Published: Wed Feb 24 2021 03:45:04 GMT+0000 (Coordinated Universal Time) --> | ||
<html | ||
data-wf-page="6035b5514552bcd9b3e0a829" | ||
data-wf-site="6035b5514552bcae2ee0a81d" | ||
> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Loop | Foundation</title> | ||
<meta content="width=device-width, initial-scale=1" name="viewport" /> | ||
<meta content="Webflow" name="generator" /> | ||
<link href="css/normalize.css" rel="stylesheet" type="text/css" /> | ||
<link href="css/webflow.css" rel="stylesheet" type="text/css" /> | ||
<link | ||
href="css/loop-landing-v2.webflow.css" | ||
rel="stylesheet" | ||
type="text/css" | ||
/> | ||
<script | ||
src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" | ||
type="text/javascript" | ||
></script> | ||
<script type="text/javascript"> | ||
WebFont.load({ | ||
google: { | ||
families: [ | ||
"Lora:regular,italic,700", | ||
"Oxygen:300,regular,700", | ||
], | ||
}, | ||
}); | ||
</script> | ||
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] --> | ||
<script type="text/javascript"> | ||
!(function (o, c) { | ||
var n = c.documentElement, | ||
t = " w-mod-"; | ||
(n.className += t + "js"), | ||
("ontouchstart" in o || | ||
(o.DocumentTouch && c instanceof DocumentTouch)) && | ||
(n.className += t + "touch"); | ||
})(window, document); | ||
</script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script type="text/javascript" src="nav.js"></script> | ||
<script type="text/javascript" src="loopfoundation.js"></script> | ||
<link | ||
href="images/favicon.ico" | ||
rel="shortcut icon" | ||
type="image/x-icon" | ||
/> | ||
<link href="images/webclip.png" rel="apple-touch-icon" /> | ||
</head> | ||
<body> | ||
<div> | ||
<div | ||
data-collapse="medium" | ||
data-animation="default" | ||
data-duration="400" | ||
style="opacity: 0;" | ||
role="banner" | ||
class="navbar w-hidden-main w-hidden-medium w-hidden-small w-hidden-tiny w-nav" | ||
> | ||
<div class="w-container"> | ||
<a href="#" class="logo w-nav-brand"></a> | ||
<nav role="navigation" class="w-nav-menu"> | ||
<a href="#" class="w-nav-link">Home</a> | ||
<a href="#" class="w-nav-link">About</a> | ||
<a href="#" class="w-nav-link">Contact</a> | ||
</nav> | ||
<div class="w-nav-button"> | ||
<div class="w-icon-nav-menu"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
data-collapse="tiny" | ||
data-animation="over-right" | ||
data-duration="400" | ||
role="banner" | ||
class="navbar w-nav" | ||
> | ||
<div class="w-container"> | ||
<a href="index.html" class="logo w-nav-brand"> | ||
<div class="long-text">Loop</div> | ||
</a> | ||
<div id="navbar"></div> | ||
<div | ||
class="menu-button w-hidden-main w-hidden-medium w-hidden-small w-clearfix w-nav-button" | ||
> | ||
<div class="menu-icon w-icon-nav-menu"></div> | ||
<div class="menu-link">MENU</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="hero-section" style="text-align: center;"> | ||
<div class="w-container"> | ||
<h1 class="hero-header">Loop Foundation</h1> | ||
<h3 style="color:whitesmoke">A Non-For-Profit Public Company</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<main id="main-content" class="main-content"></main> | ||
<script | ||
src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=6035b5514552bcae2ee0a81d" | ||
type="text/javascript" | ||
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" | ||
crossorigin="anonymous" | ||
></script> | ||
<script src="js/webflow.js" type="text/javascript"></script> | ||
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
let paragraph = (function () { | ||
pub = {}; | ||
|
||
//makePkg = (img, name, descr) => { | ||
makePkg = (title, information, sub_info) => { | ||
return `<div class="w-container"> | ||
<div class="w-richtext"> | ||
<h3>${title}</h3> | ||
<blockquote>${information}</blockquote> | ||
<h3> ${sub_info}</h3> | ||
</div> | ||
</div> | ||
`; | ||
}; | ||
|
||
displayPkgs = (pkgs) => { | ||
pkgs.forEach((package) => { | ||
let title = package.title; | ||
let information = package.information; | ||
let sub_info = package.sub_info; | ||
|
||
$("#main-content").append(makePkg(title, information, sub_info)); | ||
}); | ||
}; | ||
|
||
pub.setup = () => { | ||
$.ajax({ | ||
type: "GET", | ||
url: "loopfoundation.json", | ||
data: { | ||
get_param: "value", | ||
}, | ||
dataType: "json", | ||
async: false, | ||
success: function (data) { | ||
let pkgs = []; | ||
pkgs = data.biogs; | ||
|
||
displayPkgs(pkgs); | ||
}, | ||
error: () => { | ||
alert("Could not load work-package data."); | ||
}, | ||
}); | ||
}; | ||
|
||
return pub; | ||
})(); | ||
|
||
$(document).ready(pub.setup); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"biogs": [ | ||
{ | ||
"title": "Incorporation 27 March 2024", | ||
"information": "Loop3D Foundation was incorporated on 27th March, 2024 as a Public Company limited by guarantee - Loop3D Foundation Ltd. The company is a commercial entity to provide: " , | ||
"sub_info": "(a) research, develop, maintain, and administer software that concerns 3D geological (sub-surface) modelling (software)" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters