Skip to content

Commit

Permalink
Move social links from top nav to footer
Browse files Browse the repository at this point in the history
Related to #420
  • Loading branch information
mattstratton committed May 21, 2016
1 parent 52fed23 commit 3968ae4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 5 additions & 1 deletion themes/devopsdays-responsive/layouts/partials/footer.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
</div> <!-- this closes the initial container div -->
<div class="footer">
<p>Copyright &copy; 2009-2016 devopsdays</p>
<div>
<a class = "social-links" href="https://twitter.com/{{ .Site.Params.social.twitter }}"><i class="fa fa-twitter-square fa-2x"></i></a>
<a class = "social-links" href="http://groups.google.com/group/devopsdays"><i class="fa fa-envelope fa-2x"></i></a>
<a class = "social-links" href="http://www.linkedin.com/groups?home=&gid=2445279"><i class="fa fa-linkedin fa-2x"></i></a>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
Expand Down
11 changes: 0 additions & 11 deletions themes/devopsdays-responsive/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,6 @@ <h1>The conference that brings development and operations together.</h1>
<li><a href="/sponsor"><i class="fa fa-heart-o fa-2x"></i><br />Sponsor</a></li>
<li><a href="/organizing"><i class="fa fa-smile-o fa-2x"></i><br />Organizing</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a class = "social-links" href="https://twitter.com/{{ .Site.Params.social.twitter }}"><i class="fa fa-twitter-square fa-2x"></i></a>
</li>
<li>
<a class = "social-links" href="http://groups.google.com/group/devopsdays"><i class="fa fa-envelope fa-2x"></i></a>
</li>
<li>
<a class = "social-links" href="http://www.linkedin.com/groups?home=&gid=2445279"><i class="fa fa-linkedin fa-2x"></i></a>
</li>
</ul>
</div><!-- /.nav-collapse -->
</div><!-- /.container -->
</nav><!-- /.navbar -->
Expand Down
2 changes: 1 addition & 1 deletion themes/devopsdays-responsive/static/css/site.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion themes/devopsdays-responsive/static/css/site.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions themes/devopsdays-responsive/static/site.less
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,21 @@ h1 {
}

.footer, .push {
height: 30px; /* .push must be the same height as .footer */
height: 50px; /* .push must be the same height as .footer */
background-color: #1581AB;
text-align: center;
padding-top: 5px;
padding-top: 10px;
color: #fff;
margin-top: 10px;
}

.navbar-nav li a {
text-align: center;
}

.social-links {
color: #fff;
margin-top: 25px;
margin-left: 25px;
margin-right: 25px;
}

0 comments on commit 3968ae4

Please sign in to comment.