Step one... here's the top part (just the menu for now, slider not yet implemented)
I took all of the .css files and put them in assets/theme/seentheme/css/
I took all of the .js files and put them in assets/theme/seentheme/js/
I took all of the images and put them in assets/theme/seentheme/images/
The slider images will go in assets/images/seentheme/slider/ (with a Media source pointing to that directory)
The SeenTheme template - this is for the single-page output. The menu is still hard-coded at this point, will have to study it a bit to port it to Wayfinder.
<!DOCTYPE html>
<!-- This site was created in Webflow. http://www.webflow.com-->
<!-- Last Published: Sun May 04 2014 16:56:28 GMT+0000 (UTC) -->
<html style="" class="w-mod-js w-mod-no-touch w-mod-video w-mod-no-ios wf-opensans-n3-active wf-opensans-i3-active wf-opensans-n4-active wf-opensans-i4-active wf-opensans-n6-active wf-opensans-i6-active wf-opensans-n7-active wf-opensans-i7-active wf-opensans-n8-active wf-opensans-i8-active wf-merriweather-n3-active wf-merriweather-n4-active wf-merriweather-n7-active wf-merriweather-n9-active wf-droidserif-n4-active wf-droidserif-n7-active wf-lato-n1-active wf-lato-i1-active wf-lato-n3-active wf-lato-i3-active wf-lato-n4-active wf-lato-i4-active wf-lato-n7-active wf-lato-i7-active wf-lato-n9-active wf-lato-i9-active wf-active" data-wf-site="535e446be6ef15215d000b88">
<head>
<meta charset="[[++modx_charset">
<title>SEEN THEME - Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Webflow">
<base href="[[++site_url]]">
<style type="text/css">
.gm-style .gm-style-cc span,.gm-style .gm-style-cc a,.gm-style .gm-style-mtc div {
font-size:10px}
</style>
<link href="assets/theme/seentheme/css/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
@media print {
.gm-style .gmnoprint, .gmnoprint {
display:none }
}
@media screen {
.gm-style .gmnoscreen, .gmnoscreen {
display:none
}
}
</style>
<style type="text/css">
.gm-style {
font-family:Roboto,Arial,sans-serif;font-size:11px;font-weight:400;text-decoration:none
}
</style>
<link rel="stylesheet" type="text/css" href="assets/theme/seentheme/css/normalize.css">
<link rel="stylesheet" type="text/css" href="assets/theme/seentheme/css/webflow.css">
<link rel="stylesheet" type="text/css" href="assets/theme/seentheme/css/seen-theme.css">
<script style="" src="assets/theme/seentheme/js/webfont.js"></script>
<link href="assets/theme/seentheme/css/css_002.css" rel="stylesheet">
<script>
WebFont.load({
google: {
families: ["Open Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic","Merriweather:300,400,700,900","Droid Serif:400,700","Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic"]
}
});
</script>
<script type="text/javascript" src="assets/theme/seentheme/js/modernizr.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="https://y7v4p6k4.ssl.hwcdn.net/placeholder/favicon.ico">
<script src="assets/theme/seentheme/js/js.js" type="text/javascript"></script>
<script src="assets/theme/seentheme/js/commonutilmarkermap.js" charset="UTF-8" type="text/javascript"></script><script src="assets/theme/seentheme/js/infowindow.js" charset="UTF-8" type="text/javascript"></script><script src="assets/theme/seentheme/js/onion.js" charset="UTF-8" type="text/javascript"></script><script src="assets/theme/seentheme/js/controlsstats.js" charset="UTF-8" type="text/javascript"></script></head>
<body>
[[$menu]]
[[*content]]
<script type="text/javascript" src="assets/theme/seentheme/js/jquery.js"></script>
<script type="text/javascript" src="assets/theme/seentheme/js/webflow.js"></script>
<!--[if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif]-->
<script src="assets/theme/seentheme/js/main.js"></script></body></html>
I took the whole menu section and put it in a chunk named "menu" - this will get edited to use Wayfinder calls. And I took the "top" section and put it in the "home" resource's content.
Next to get the "top" section's slider working.