Skip to content

Commit

Permalink
fixed some path issues, tightened up the templates
Browse files Browse the repository at this point in the history
  • Loading branch information
joelhooks committed Oct 29, 2009
1 parent e51f803 commit fc35595
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
_site/*
12 changes: 5 additions & 7 deletions _includes/footer.html
@@ -1,3 +1,6 @@
<!--FOOTER-->
<hr class="space">
<hr class="space">
<div class="span-24 last" style="background-color:#000000">
<div class="span-8">
<div class="span-3">
Expand Down Expand Up @@ -30,10 +33,5 @@
</div>
</div>
</div>
</div><!--END CONTENT-->
<!-- TENDER -->
<script type="text/javascript" defer="defer">
var baseSslHost = (("https:" == document.location.protocol) ? "https://" : "http://");
document.write(unescape("%3Cscript src='" + baseSslHost + "robotlegs.tenderapp.com/tender_widget.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<!-- END TENDER -->
</div>
<!--END FOOTER-->
20 changes: 13 additions & 7 deletions _layouts/default.html
Expand Up @@ -17,14 +17,20 @@

<body>
<div class="container">
{% if page.header == 'front' %}
{% include front_header.html %}
{% else %}
{% unless page.hide_header %}
{% include page_header.html %}
{% endunless %}
{% endif %}
{% unless page.hide_header %}
<!-- PAGE HEADER -->
{% if page.header == 'front' %}
{% include front_header.html %}
{% else %}
{% include page_header.html %}
{% endif %}
<!-- END PAGE HEADER -->
{% endunless %}

<!--CONTENT-->
{{ content }}
<!--END CONTENT-->

{% unless page.hide_footer %}
{% include footer.html %}
{% endunless %}
Expand Down
4 changes: 2 additions & 2 deletions css/site.css
Expand Up @@ -12,7 +12,7 @@ div.container {

li{
list-style:none;
background:url(/assets/images/red-bullet-2x2.png) no-repeat 0px .7em;
background:url(/images/red-bullet-2x2.png) no-repeat 0px .7em;
padding-left:6px;
}

Expand Down Expand Up @@ -42,7 +42,7 @@ div.downloadbtn {

hr {
border: 0;
background: #fff url(/assets/images/hrule.png) no-repeat top center;
background: #fff url(/images/hrule.png) no-repeat top center !important;
}

.info {
Expand Down
3 changes: 1 addition & 2 deletions examples/index.html
Expand Up @@ -112,5 +112,4 @@ <h4 >Google Maps</h4></a>
</div>
</div>
</div><!--end example row 2-->
<hr class="space">
<hr class="space">

3 changes: 1 addition & 2 deletions index.html
@@ -1,6 +1,5 @@
---
layout: default
title: Robotlegs AS3 Micro-Architecture
name: Home
header: front
---
Expand Down Expand Up @@ -55,4 +54,4 @@ <h1 class="section">Let's talk about it.</h1>
</div>
<hr class="space">
<hr class="space">
<!--END CONTENT-->

0 comments on commit fc35595

Please sign in to comment.