Skip to content
Snippets Groups Projects
Commit 5d0b8f03 authored by Oliver Davies's avatar Oliver Davies
Browse files

Add text to the user login form.

Added some extra markup to page.tpl.php to accomodate the new columns
and added a new SASS partial to add the CSS styling.
parent 23226127
No related branches found
No related tags found
No related merge requests found
.page-user.not-logged-in {
#content-inner {
.column-left,
.column-right {
@include span-columns(6);
}
.column-right {
@include omega;
}
}
}
......@@ -98,13 +98,21 @@
<?php print $messages; ?>
<?php print render($page['help']); ?>
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
<div id="content-inner" class="clearfix"><?php print render($page['content']); ?></div>
<div id="content-inner" class="clearfix">
<div class="column-left">
<?php print render($page['content']); ?>
</div> <!-- /.column-left -->
<div class="column-right">
<?php print $drupalorg_login_text; ?>
</div> <!-- /.column-right -->
</div>
<?php if (!empty($feed_icons)): ?>
<div id="feeds">Subscribe with RSS <?php print $feed_icons; ?></div>
<?php endif; ?>
</div> <!-- /#content -->
</div> <!-- /#column-left -->
</div>
<?php if ($page['sidebar_second']): ?>
<div id="aside" role="complementary" >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment