diff options
Diffstat (limited to 'views')
| -rw-r--r-- | views/about/about.ejs | 71 | ||||
| -rw-r--r-- | views/controls/editor/media-drawer.ejs | 15 | ||||
| -rw-r--r-- | views/controls/editor/settings.ejs | 6 | ||||
| -rw-r--r-- | views/partials/footer.ejs | 3 | ||||
| -rw-r--r-- | views/partials/scripts.ejs | 1 |
5 files changed, 93 insertions, 3 deletions
diff --git a/views/about/about.ejs b/views/about/about.ejs new file mode 100644 index 0000000..f59fe14 --- /dev/null +++ b/views/about/about.ejs @@ -0,0 +1,71 @@ +<!doctype html> +<html> +<head> + <title>vvalls</title> + [[ include ../partials/meta ]] +</head> +<body class="loading"> + <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="holder"> + </div> + </div> + <h1>About VValls</h1> + + <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 ]] + [[ include ../partials/footer ]] + + </div> +</body> +[[ include ../partials/scripts ]] +</html> +<style> +.aboutintro { + text-align: center; + line-height: 43px; + font-size: 24px; + padding: 5% 0; + font-weight: 300; +} +.aboutintro .inner { + max-width: 800px; + margin: 0 auto; + text-align: center; +} +</style>
\ No newline at end of file diff --git a/views/controls/editor/media-drawer.ejs b/views/controls/editor/media-drawer.ejs index 3db71d5..f9bce61 100644 --- a/views/controls/editor/media-drawer.ejs +++ b/views/controls/editor/media-drawer.ejs @@ -23,7 +23,6 @@ </div> <div class="foundMedia"> - <input type="text" id="tumblr-url" placeholder="Enter a Tumblr URL to add images from it!"> <span class="container"></span> </div> @@ -33,7 +32,7 @@ </div> -<span class="fileUpload"> +<span class="fileUpload" id="fileUpload"> <input type="hidden" name="_csrf" value="[[- token ]]"> <form> <span class="ion-ios7-upload-outline upload-icon"></span><br> @@ -43,3 +42,15 @@ <small>~ or ~</small><br> <input type="text" placeholder="Enter Vimeo or YouTube or image link" class="url"> </span> + +<span class="fileUpload" id="tumblrUpload"> + <input type="hidden" name="_csrf" value="[[- token ]]"> + <input type="text" class="url" placeholder="Enter a Tumblr URL to add images from it!"> + <br> + <span class="exampleTumblrs"> + or try one of these: + <a href="#" class="exampleTumblr">risingtensions</a> + <a href="#" class="exampleTumblr">fixoid</a> + <a href="#" class="exampleTumblr">nopattern</a> + </span> +</span> diff --git a/views/controls/editor/settings.ejs b/views/controls/editor/settings.ejs index cd17382..cd915c5 100644 --- a/views/controls/editor/settings.ejs +++ b/views/controls/editor/settings.ejs @@ -27,6 +27,12 @@ <span class="ion-map"></span> Edit map </a> + + <a href="#" class="modalLink" data-role='view-project' style="margin-left: 40px;"> + <span class="ion-ios7-search-strong"></span> + View project + </a> + </div> <div class="setting"> diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs index 7b01162..e3c572f 100644 --- a/views/partials/footer.ejs +++ b/views/partials/footer.ejs @@ -13,7 +13,8 @@ <br><br> - <a href="/about">How To</a> + <a href="/about">About</a> + <a href="/about/howto">How To</a> <a href="/about/terms">Terms</a> <a href="/about/privacy">Privacy</a> <a href="mailto:hello@vvalls.com">Contact</a> diff --git a/views/partials/scripts.ejs b/views/partials/scripts.ejs index 61659f7..fc94992 100644 --- a/views/partials/scripts.ejs +++ b/views/partials/scripts.ejs @@ -113,6 +113,7 @@ <script type="text/javascript" src="/assets/javascripts/ui/editor/ColorControl.js"></script> <script type="text/javascript" src="/assets/javascripts/ui/editor/Collaborators.js"></script> <script type="text/javascript" src="/assets/javascripts/ui/editor/MediaEditor.js"></script> +<script type="text/javascript" src="/assets/javascripts/ui/editor/MediaTumblr.js"></script> <script type="text/javascript" src="/assets/javascripts/ui/editor/MediaUpload.js"></script> <script type="text/javascript" src="/assets/javascripts/ui/editor/MediaViewer.js"></script> <script type="text/javascript" src="/assets/javascripts/ui/editor/Presets.js"></script> |
