summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--site/index.js1
-rw-r--r--site/public/assets/style.css12
-rw-r--r--site/templates/about.liquid1
-rw-r--r--site/templates/all.liquid1
-rw-r--r--site/templates/index.liquid2
5 files changed, 16 insertions, 1 deletions
diff --git a/site/index.js b/site/index.js
index aa1f58c..430f73f 100644
--- a/site/index.js
+++ b/site/index.js
@@ -87,6 +87,7 @@ var app = okcms.createApp({
{type: 'advertising', query: '*'},
{type: 'experiential', query: '*'},
{type: 'content', query: '*'},
+ {type: 'page', query: 'about'}
],
template: 'all'
},
diff --git a/site/public/assets/style.css b/site/public/assets/style.css
index 4f28979..2cd2d29 100644
--- a/site/public/assets/style.css
+++ b/site/public/assets/style.css
@@ -862,6 +862,18 @@ nav .sub.active a {
margin-top: 0;
padding-top: 0;
}
+.all .contactcontent {
+ width: 100%;
+ clear: both;
+ position: relative;
+ top: 1em;
+ margin-left: 10px;
+ padding: 1em 0;
+ font-size: 0.8em;
+ line-height: 1.5em;
+ border-bottom: 1px solid black;
+ border-top: 1px solid black;
+}
.desktop .brady > a:hover:after {
content: 'SAY HELLO!';
position: absolute;
diff --git a/site/templates/about.liquid b/site/templates/about.liquid
index 86207cf..5858462 100644
--- a/site/templates/about.liquid
+++ b/site/templates/about.liquid
@@ -1,6 +1,7 @@
<div class="entry page">
<span>
<span class="brady">
+ <img src="http://ltho.s3.amazonaws.com/twohustlers/2H_ABOUT_150616.jpg" style="width:100%">
<div class="aboutcontent">
<span class="aboutcontenttext">{{page.body | newline_to_br}}</span>
</div>
diff --git a/site/templates/all.liquid b/site/templates/all.liquid
index 5f3009f..34db1fc 100644
--- a/site/templates/all.liquid
+++ b/site/templates/all.liquid
@@ -20,4 +20,5 @@
</div>
{% endfor %}
</div>
+ <div class="contactcontent">{{page.contact | newline_to_br}}</div>
</div>
diff --git a/site/templates/index.liquid b/site/templates/index.liquid
index 738cbe7..572cf0a 100644
--- a/site/templates/index.liquid
+++ b/site/templates/index.liquid
@@ -108,7 +108,7 @@ WEBSITE BY OKFOCUS, http://okfoc.us, Internet Legends.
<div class="cat index">VIEW ALL PROJECTS</div>
</div>
<div class="bottom">
- <div class="cat about">ABOUT</div>
+ <div class="cat about">ABOUT/CONTACT</div>
<div class="contact">
{{ page.body | newline_to_br }}
</div>