Commit 261c43aa by Tom Giannattasio

add sidebar column; fixed main column float bug

parent f32388f2
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
} }
.main-column { .main-column {
clear: both;
float: left; float: left;
width: 70%; width: 70%;
} }
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
<script type="text/javascript" charset="utf-8"> <script type="text/javascript" charset="utf-8">
$(document).ready(function(){ $(document).ready(function(){
var course_updates = new CMS.Models.CourseUpdateCollection(); var course_updates = new CMS.Models.CourseUpdateCollection();
course_updates.reset(${course_updates|n}); course_updates.reset(${course_updates|n});
course_updates.urlbase = '${url_base}'; course_updates.urlbase = '${url_base}';
...@@ -33,6 +32,7 @@ ...@@ -33,6 +32,7 @@
<div class="main-wrapper"> <div class="main-wrapper">
<div class="inner-wrapper"> <div class="inner-wrapper">
<h1>Course Info</h1> <h1>Course Info</h1>
<div class="main-column">
<article class="unit-body window" id="course-update-view"> <article class="unit-body window" id="course-update-view">
<h2>Updates</h2> <h2>Updates</h2>
<a href="#" class="new-update-button">New Update</a> <a href="#" class="new-update-button">New Update</a>
...@@ -40,6 +40,10 @@ ...@@ -40,6 +40,10 @@
<!-- probably replace w/ a vertical where each element of the vertical is a separate update w/ a date and html field --> <!-- probably replace w/ a vertical where each element of the vertical is a separate update w/ a date and html field -->
</article> </article>
</div> </div>
<div class="sidebar window">
handouts go here
</div>
</div>
</div> </div>
</div> </div>
</%block> </%block>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment