Skip to content

Commit

Permalink
Update Apr 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent-Ailleres committed May 1, 2024
1 parent 144fffb commit d800282
Show file tree
Hide file tree
Showing 5 changed files with 177 additions and 10 deletions.
11 changes: 2 additions & 9 deletions downloads.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{
"software": [
{
"title": "The Loop Interface",
"desc": "Loop does not require installing. To use Loop, unzip the Loop3D directory to your local drive. Navigate to the Loop3D folder. Run the loop.bat file. Loop comes with its own python environment, hence, the large file size",
"img": "./images/interface.png",
"linux": "https://github.com/Loop3D/Loop3D",
"windows": "https://cloudstor.aarnet.edu.au/plus/s/mxvOENfr3kS45V0/download"
},
{
"title": "Map2Loop",
"desc": "Automatic map analysis for geological history and data extraction",
"img": "./images/map2loop.png",
"linux": "https://github.com/Loop3D/map2loop-2",
"windows": "https://github.com/Loop3D/map2loop-2"
"linux": "https://github.com/Loop3D/map2loop",
"windows": "https://github.com/Loop3D/map2loop"
},
{
"title": "LoopStructural",
Expand Down
114 changes: 114 additions & 0 deletions loopfoundation.html
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>
50 changes: 50 additions & 0 deletions loopfoundation.js
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);
9 changes: 9 additions & 0 deletions loopfoundation.json
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)"
}
]
}
3 changes: 2 additions & 1 deletion nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ let navbar = (function () {
'<a href="downloads.html" class="nav-link w-nav-link %">Downloads & Articles</a>',
'<a href="work-packages.html" class="nav-link w-nav-link %">Work Packages</a>',
'<a href="presentations.html" class="nav-link w-nav-link %">Presentations</a>',
'<a href="loopfoundation.html" class="nav-link w-nav-link %">Loop3D Foundation</a>',
// '<a href="blog.html" class="nav-link w-nav-link %">Blog</a>',
'<a href="contact.html" class="nav-link w-nav-link %">Contact</a>',
// '<a href="contact.html" class="nav-link w-nav-link %">Contact</a>',
'<a href="#" class="close-x w-hidden-main w-hidden-medium w-hidden-small">×</a>',
"</nav>",
];
Expand Down

0 comments on commit d800282

Please sign in to comment.