Commit b30dc6fe by Kyle Fiedler

Hide footer links for activation pages

parent c5772894
<%inherit file="main.html" />
<%block name="bodyclass">activation</%block>
<section class="activation">
<h1>Account already active!</h1>
<!-- <p>Now go <a href="/">log in</a> and try the course!</a></p> -->
......
<%inherit file="main.html" />
<%block name="bodyclass">activation</%block>
<section class="activation">
<h1>Activation Complete!</h1>
<!-- <p>Now go <a href="/">log in</a> and try the course!</a></p> -->
......
<%inherit file="main.html" />
<%block name="body-class">activation</%block>
<section class="activation">
<h1>Activation Invalid</h1>
......
<%inherit file="marketing.html" />
<%block name="body-class">activation</%block>
<%block name="header_text">
<section class="course">
<section>
......
......@@ -38,7 +38,7 @@
</head>
<body>
<body class="<%block name="bodyclass"/>">
${self.body()}
<%block name="bodyextra"/>
......
body.activation {
footer {
max-width: 600px;
text-align: center;
p {
float: none;
}
ul {
display: none;
}
}
}
section.activation {
@extend .wrapper;
@include box-shadow(0 1px 0 #fff);
......
......@@ -133,7 +133,6 @@ html {
max-width: 100%;
height: auto;
}
}
footer {
@extend .clearfix;
......@@ -180,4 +179,13 @@ html {
}
}
}
&.activation {
footer {
ul {
display: none;
}
}
}
}
}
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