summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-11-15 16:23:17 +0100
committerJules Laplace <julescarbon@gmail.com>2019-11-15 16:23:17 +0100
commit9d8b2c74e57e1dd7aa31211fcbbfb7e7d1f97307 (patch)
tree7710c9912a68f2f9046e7915fe6157072b44dc18
parent9a5814e462b827dbd4a709edebf94fa5a65a26fa (diff)
copy edit
-rw-r--r--server/lib/views/index.js8
-rw-r--r--views/about/about.ejs27
-rw-r--r--views/about/howto.ejs2
-rw-r--r--views/about/privacy.ejs27
-rw-r--r--views/about/terms.ejs27
-rwxr-xr-xviews/home.ejs12
-rw-r--r--views/partials/footer.ejs6
7 files changed, 60 insertions, 49 deletions
diff --git a/server/lib/views/index.js b/server/lib/views/index.js
index 523f628..5d82979 100644
--- a/server/lib/views/index.js
+++ b/server/lib/views/index.js
@@ -134,10 +134,10 @@ var views = module.exports = {
})
return
}
- if (name == "about" || name == "index") {
- res.render('about/' + name)
- return
- }
+ if (name == "about" || name == "index" || name == "terms" || name == "privacy") {
+ res.render('about/' + name)
+ return
+ }
if (name === "new") {
res.render('docs', {
diff --git a/views/about/about.ejs b/views/about/about.ejs
index 6d5f011..a1d04a1 100644
--- a/views/about/about.ejs
+++ b/views/about/about.ejs
@@ -13,34 +13,9 @@
<div class="projectList about aboutintro">
<div class="inner">
VValls is a platform for creating and sharing immersive web based 3D exhibitions. With VValls users can draw floor plans, and then apply media to the surfaces of the virtual space. VValls is the ideal solution for anyone creating immersive presentations of content, curators looking to plan shows, and artists looking to visualize their work in 3D space. VValls is completely HTML5 based – mobile and desktop compatible.
- <br><br>
- Contact us with inquiries at <a href="mailto:hello@vvalls.com">hello@vvalls.com</a>.<br>
- We are based in New York City.
- </div>
-
- <div class="item">
- <div class="rap">
- <span style="background-image:url(http://vvalls.s3.amazonaws.com/static/larisa.jpg)">
- </span>
- <span>
- <h3>Dot Dash 3</h3>
- <words>VValls was conceived and prototyped by Larisa Leventon, Ph.D., MBA, founder of Dot Dash 3 and an M.I.T. + Brown University-trained visualization algorithm specialist.</words>
- </span>
- </div>
- </div>
-
- <div class="item">
- <div class="rap">
- <span style="background-image:url(http://vvalls.s3.amazonaws.com/static/okf.jpg)">
- </span>
- <span>
- <h3>OKFocus</h3>
- <words>VValls was developed and designed by OKFocus, a forward thinking NYC based creative agency. The technology was spearheaded by Jules LaPlace, CTO, and the design by Ryder Ripps, ECD.</words>
- </span>
- </div>
</div>
</div>
-
+
[[ include ../partials/confirm-modal ]]
[[ include ../projects/layouts-modal ]]
[[ include ../partials/sign-in ]]
diff --git a/views/about/howto.ejs b/views/about/howto.ejs
index 914c3b3..7d9c594 100644
--- a/views/about/howto.ejs
+++ b/views/about/howto.ejs
@@ -8,7 +8,7 @@
<div class="rapper page">
[[ include ../partials/header ]]
- <div class="hero" style="background-image:url(http://okfocus.s3.amazonaws.com/images/vvalls/construction.jpg);">
+ <div class="hero" style="">
<div class="holder">
</div>
</div>
diff --git a/views/about/privacy.ejs b/views/about/privacy.ejs
new file mode 100644
index 0000000..3b748bf
--- /dev/null
+++ b/views/about/privacy.ejs
@@ -0,0 +1,27 @@
+<!doctype html>
+<html>
+<head>
+ <title>About VValls</title>
+ [[ include ../partials/meta ]]
+</head>
+<body class="loading">
+ <div class="rapper page">
+ [[ include ../partials/header ]]
+
+ <h1 class="leader">Privacy Policy</h1>
+
+ <div class="projectList about aboutintro">
+ <div class="inner">
+ When you log into VValls we store cookies to make sure we know you're logged in. If you sign up, we store your email address, but you can always sign up with a fictitious email address. We will never sell your data. We are not responsible for third party privacy policies, e.g. embedding a Youtube video, but we encourage you to run an ad blocker.
+ </div>
+ </div>
+
+ [[ include ../partials/confirm-modal ]]
+ [[ include ../projects/layouts-modal ]]
+ [[ include ../partials/sign-in ]]
+ [[ include ../partials/footer ]]
+
+ </div>
+</body>
+[[ include ../partials/scripts ]]
+</html>
diff --git a/views/about/terms.ejs b/views/about/terms.ejs
new file mode 100644
index 0000000..46a7c69
--- /dev/null
+++ b/views/about/terms.ejs
@@ -0,0 +1,27 @@
+<!doctype html>
+<html>
+<head>
+ <title>Terms</title>
+ [[ include ../partials/meta ]]
+</head>
+<body class="loading">
+ <div class="rapper page">
+ [[ include ../partials/header ]]
+
+ <h1 class="leader">Terms</h1>
+
+ <div class="projectList about aboutintro">
+ <div class="inner">
+ This website is ALPHA software! Use at your own risk. We are not responsible for how VValls is used. Have fun!
+ </div>
+ </div>
+
+ [[ include ../partials/confirm-modal ]]
+ [[ include ../projects/layouts-modal ]]
+ [[ include ../partials/sign-in ]]
+ [[ include ../partials/footer ]]
+
+ </div>
+</body>
+[[ include ../partials/scripts ]]
+</html>
diff --git a/views/home.ejs b/views/home.ejs
index 14fc0e3..7edac4c 100755
--- a/views/home.ejs
+++ b/views/home.ejs
@@ -7,18 +7,6 @@
<body class="loading">
<div class="rapper page home">
[[ include partials/header ]]
-
- <div class="hero" style="background-image:url(http://okfocus.s3.amazonaws.com/images/vvalls-video-still2.jpg)">
- <div class="holder">
- <span class="circle">
- <span class="videoTitle">Create 3D Rooms</span><br>
- <span class="ion-ios-play"></span><br>
- <span class="videoTitle">Watch video.</span>
- </span>
- </div>
- </div>
-
- <h1>What's VValls For?</h1>
<div class="projectList about">
<div class="item">
diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs
index 05bc128..cc94bc4 100644
--- a/views/partials/footer.ejs
+++ b/views/partials/footer.ejs
@@ -15,12 +15,6 @@
<a href="/about">About</a>
<a href="/about/howto">How To</a>
-
- [[ if (logged_in && user.plan_level > 0) { ]]
- <a href="/profile/billing">Billing</a>
- [[ } else { ]]
- <a href="/about/brochure">Subscribe</a>
- [[ } ]]
<a href="/about/terms">Terms</a>
<a href="/about/privacy">Privacy</a>
<a href="mailto:hello@vvalls.com">Contact</a>