X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=2014%2Findex.html;h=4d236415d5c34f4b47cd4e27ecba8beeb5c68651;hb=43c661858ee3d4f2a00e922e443aedce9d99aa47;hp=d5c71f86d8edeecb325098dce021b2aa4b447928;hpb=f9b79d56027aa5dcb3c9d81774762e3e8eaff409;p=libreplanet-static.git diff --git a/2014/index.html b/2014/index.html index d5c71f86..4d236415 100644 --- a/2014/index.html +++ b/2014/index.html @@ -16,14 +16,21 @@
-
-
-

LibrePlanet 2014

-

March 22nd-23rd 2014 in Cambridge, MA

-

Free software, free society

+
+
+ + [ LibrePlanet 2014 — Free Software, free society ] + +
+
+

+ March 22nd-23rd
+ MIT, Cambridge, MA

-
+
@@ -40,16 +47,11 @@
-
-

- - Home - -

+ -
+
@@ -180,7 +222,7 @@

The Free Software Foundation is a nonprofit with a worldwide mission to - advance software freedom. + advance software freedom. LibrePlanet 2014 is produced in partnership by the Free Software Foundation with the Student Information Processing Board (SIPB) at MIT. Donate.

@@ -222,7 +264,7 @@ /** * @licstart The following is the entire license notice for the JavaScript code in this page. * - * Copyright (C) 2013 Free Software Foundation, Inc + * Copyright (C) 2013, 2014 Free Software Foundation, Inc * Licensed under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance @@ -245,6 +287,19 @@ $('.glyphicon-chevron-left').css('display','inline-block'); $('.glyphicon-chevron-right').css('display','inline-block'); }); + + $(document).ready(lpNavPlace); + + $(window).resize(lpNavPlace); + + function lpNavPlace() { + screenSize = $(window).width(); + if(screenSize <= 767) { + $("#lp-nav").insertAfter("#lp-content"); + } else { + $("#lp-nav").insertBefore("#lp-content"); + } + }