Skip to content

Commit

Permalink
Update for 3D conference
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent-Ailleres committed Jul 24, 2024
1 parent 6c497bd commit acb0071
Show file tree
Hide file tree
Showing 5 changed files with 213 additions and 7 deletions.
114 changes: 114 additions & 0 deletions 3Dconference2025.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 | 3D Modelling Conference, Freemantle, WA, April 2025</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="3Dconference2025.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" style="color:rgb(150, 65, 9)"><b>3D Geological Modelling Conference, Fremantle, Apr 7-10, 2025</h1>
<h3 style="color:darkslategrey; font-family: Oxygen, sans-serif; margin: 30px 40px"><b>Welcoming contributions and delegates from indutry, academia and governmental organisations</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>
58 changes: 58 additions & 0 deletions 3Dconference2025.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
let paragraph = (function () {
pub = {};

//makePkg = (img, name, descr) => {
makePkg = (title, information, sub_info, img) => {
return `<div class="w-container">
<div class="w-richtext">
<h3 style = "color:rgb(150, 65, 9)"><b>${title}</b></h3>
<blockquote>${information}</blockquote>
${sub_info}
<br>
<img
src="${img}"
loading="lazy"
sizes="(max-width: 479px) 94vw, (max-width: 767px) 95vw, (max-width: 991px) 728px, 940px"
alt=""
/>
</div>
</div>
`;
};

displayPkgs = (pkgs) => {
pkgs.forEach((package) => {
let title = package.title;
let information = package.information;
let sub_info = package.sub_info;
let img = package.img;

$("#main-content").append(makePkg(title, information, sub_info, img));
});
};

pub.setup = () => {
$.ajax({
type: "GET",
url: "3Dconference2025.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);
34 changes: 34 additions & 0 deletions 3Dconference2025.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"biogs": [
{
"title": "Location: <a href=https://tradewindshotel.com.au target=_blank>Tradewinds Hotel</a>, Freemantle, Apr 7-10 2025",
"information": "On behalf of the Loop 3D Foundation and the Loop platform, we present a 3D geological modelling conference to discuss current and future workflows, approaches, applications and downfalls of 3D geological modelling at all scales" ,
"sub_info": "The conference will run over Tue 8th and Wed 9th April. <br>Half-day workshops will be organised on Mon 7th and Thu 10th April" ,
"img": ""
},
{
"title": "Scientific themes:",
"information": "• 3D geological modelling methods <br> • integration with geophysical interpretation and modelling <br> • applications to resources management (water, minerals, tailings) <br> • applications to minerals exploration" ,
"sub_info": "" ,
"img": ""
},
{
"title": "Organising committee",
"information": "Laurent Ailleres, Lachlan Grose, Angela Rodrigues, Fernanda Alvarado-Neves - Monash University <br> Mark Jessell, Corinne Debat, Guillaume Pirot - University of Western Australia <br> Marie-Aude Bonnardot - Geoscience Australia, <br> Dorothy Close - Northern Territory Geological Survey, <br> Clint Ward - AngloAmerican<br> Janelle Simpson - Geological Survey of Queensland <br>Carina Kemp - AWS <br> Ruth Murdie - Geological Survey of Western Australia <br>Kerry Turnock - BHP" ,
"sub_info": "",
"img": ""
},
{
"title": "Registration and abstract submission",
"information": "Registration information - <a href=https://eventbrite.com.au target=_blank> Registration page - Secured by EventBrite</a>" ,
"sub_info": "Registration costs are capped at AUD$1000<br>Registration to the workshops requires registration to the conference and will be confirmed on a first-in first-served basis<br><br><table width=350><tr><td>Delegate (2 days conference)</td><td> </td><td>AUD$750</td></tr><tr><td>Delegate Early Bird (prior to Dec 15th)</td><td></td><td>AUD$680</td></tr><tr><td>Student Delegate</td><td></td><td>AUD$350</td></tr><tr><td>Each workshop (half-day)</td><td></td><td>AUD$200</td></tr></table><a href=https://eventbrite.com.au target=_blank> Link to registration page</a>",
"img": ""
},
{
"title": "Partner organisations",
"information": "Loop is joint initiative supported by the ARC Linkage program and the MinEx CRC. We gratefully thank the below organisations for their continued trust and support" ,
"sub_info": "",
"img": "images/loop-partners.png"
}
]
}
Binary file added images/empty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ let navbar = (function () {
let html = [
'<nav role="navigation" class="nav-menu w-nav-menu">',
//'<a href="index.html" aria-current="page" class="nav-link w-nav-link %">Home</a>',
'<a href="loopfoundation.html" class="nav-link w-nav-link %">Loop3D Foundation</a>',
'<a href="downloads.html" class="nav-link w-nav-link %">Downloads & Articles</a>',
'<a href="steerco.html" aria-current="page" class="nav-link w-nav-link %">Steering Committee</a>',
'<a href="loopers.html" class="nav-link w-nav-link %">Loopers</a>',
'<a href="loopfoundation.html" class="nav-link w-nav-link %"><b>Loop3D Foundation</a>',
'<a href="downloads.html" class="nav-link w-nav-link %"><b>Downloads & Articles</a>',
'<a href="steerco.html" aria-current="page" class="nav-link w-nav-link %"><b>Steering Committee</a>',
'<a href="loopers.html" class="nav-link w-nav-link %"><b>Loopers</a>',
//'<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="work-packages.html" class="nav-link w-nav-link %"><b>Work Packages</a>',
'<a href="presentations.html" class="nav-link w-nav-link %"><b>Presentations</a>',
'<a href="3Dconference2025.html" class="nav-link w-nav-link %"><b>3D Modelling conference 2025</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="#" class="close-x w-hidden-main w-hidden-medium w-hidden-small">×</a>',
Expand Down

0 comments on commit acb0071

Please sign in to comment.