add content to homepage
This commit is contained in:
parent
95270b2afe
commit
2610380b32
16
index.html
16
index.html
@ -19,6 +19,13 @@
|
|||||||
<div id="links">
|
<div id="links">
|
||||||
<div class="categorie">
|
<div class="categorie">
|
||||||
<img src="images/logo-snap.png" alt="wmfs2"/>
|
<img src="images/logo-snap.png" alt="wmfs2"/>
|
||||||
|
<h2> - what ?</h2>
|
||||||
|
<p>WMFS2 is a lightweight and highly configurable tiling window manager for X written in C. wmfs2 is a free software distributed under the <a href="http://en.wikipedia.org/wiki/BSD_licenses">BSD license</a>. it can be drive from keyboard or mouse and it's configuration stands in one text file easily understandable</p>
|
||||||
|
<h2> - where ?</h2>
|
||||||
|
<p>You can download this project in either <a href="https://github.com/xorg62/wmfs/zipball/master">zip or tar</a> formats.<br />
|
||||||
|
You can also clone the project with <a href="http://git-scm.com">Git</a> by running: <pre>$ git clone git://github.com/xorg62/wmfs</pre></p>
|
||||||
|
<h2> - look</h2>
|
||||||
|
<p>wmfs2 supports themable statusbars and clients</p>
|
||||||
<div class="slider-wrapper theme-default">
|
<div class="slider-wrapper theme-default">
|
||||||
<div id="slider" class="nivoSlider">
|
<div id="slider" class="nivoSlider">
|
||||||
<a href="shots/wmfs2_shots_01.png"><img src="images/wmfs2_thmb_01.png" alt=""/></a>
|
<a href="shots/wmfs2_shots_01.png"><img src="images/wmfs2_thmb_01.png" alt=""/></a>
|
||||||
@ -32,6 +39,14 @@
|
|||||||
<a href="shots/wmfs2_shots_09.png"><img src="images/wmfs2_thmb_09.png" alt=""/></a>
|
<a href="shots/wmfs2_shots_09.png"><img src="images/wmfs2_thmb_09.png" alt=""/></a>
|
||||||
<a href="shots/wmfs2_shots_10.png"><img src="images/wmfs2_thmb_10.png" alt=""/></a>
|
<a href="shots/wmfs2_shots_10.png"><img src="images/wmfs2_thmb_10.png" alt=""/></a>
|
||||||
</div>
|
</div>
|
||||||
|
<h2> - authors</h2>
|
||||||
|
<p>Martin Duquesnoy (xorg62@gmail.com)<br />
|
||||||
|
David Delassus (david.jose.delassus@gmail.com)<br />
|
||||||
|
Paul Fariello (fariello@archos.com)<br />
|
||||||
|
Hobbestigrou (hobbestigrou@erakis.im)<br />
|
||||||
|
Philippe Pepiot (phil@philpep.org)<br />
|
||||||
|
m-r-r (raybaudroigm@gmail.com)<br />
|
||||||
|
arnault (contact@arpinux.org)</p>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" src="scripts/jquery-1.7.1.min.js"></script>
|
<script type="text/javascript" src="scripts/jquery-1.7.1.min.js"></script>
|
||||||
<script type="text/javascript" src="scripts/jquery.nivo.slider.pack.js"></script>
|
<script type="text/javascript" src="scripts/jquery.nivo.slider.pack.js"></script>
|
||||||
@ -48,7 +63,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<p>WMFS2 is a lightweight and highly configurable tiling window manager for X written in C. wmfs2 is a free software distributed under the BSD license.</p>
|
|
||||||
<p>live support can be found on irc channel #wmfs on freenode</p>
|
<p>live support can be found on irc channel #wmfs on freenode</p>
|
||||||
<p>- - -</p>
|
<p>- - -</p>
|
||||||
<p>theme by arpinux inspired by <a href="http://wiscot.deviantart.com">wiscot</a> :: slider by <a href="license.txt">dev7</a> :: arpinux 2012 :: license <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">cc BY-NC-SA</a> :: <a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0">XHTML</a> :: <!--a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS">CSS</a--></p>
|
<p>theme by arpinux inspired by <a href="http://wiscot.deviantart.com">wiscot</a> :: slider by <a href="license.txt">dev7</a> :: arpinux 2012 :: license <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">cc BY-NC-SA</a> :: <a href="http://validator.w3.org/check/referer" title="Valid XHTML 1.0">XHTML</a> :: <!--a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3" title="Valid CSS">CSS</a--></p>
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
* { padding:0; margin:0; }
|
* { padding:0; margin:0; }
|
||||||
a { color: #ccc; text-decoration: none; }
|
a { color: #ccc; text-decoration: none; }
|
||||||
a:hover { color: #aaa; }
|
a:hover { color: #aaa; }
|
||||||
|
pre { color: #ccc; }
|
||||||
/* body --------------------------------------------------------------*/
|
/* body --------------------------------------------------------------*/
|
||||||
body {
|
body {
|
||||||
font: 12px/18px sans-serif;
|
font: 12px/18px sans-serif;
|
||||||
@ -60,6 +61,9 @@ body {
|
|||||||
-moz-box-shadow: 1px 1px 12px #000;
|
-moz-box-shadow: 1px 1px 12px #000;
|
||||||
box-shadow: 1px 1px 12px #000;
|
box-shadow: 1px 1px 12px #000;
|
||||||
}
|
}
|
||||||
|
.categorie a { text-decoration: underline ; }
|
||||||
|
.categorie h2 { padding: 10px 0 0 10px; }
|
||||||
|
.categorie p {padding-bottom: 10px; }
|
||||||
|
|
||||||
/* footer ------------------------------------------------------------*/
|
/* footer ------------------------------------------------------------*/
|
||||||
#footer {
|
#footer {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user