tazweb diff data/page.html @ rev 38

Add degault bookmark file with separated CSS file also for doc
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 15 04:45:26 2011 +0200 (2011-04-15)
parents
children 435fdb863811
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/data/page.html	Fri Apr 15 04:45:26 2011 +0200
     1.3 @@ -0,0 +1,70 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.6 +<head>
     1.7 +	<title>My Page</title>
     1.8 +	<meta charset="utf-8" />
     1.9 +	<link rel="stylesheet" type="text/css" href="style.css" />
    1.10 +</head>
    1.11 +<body>
    1.12 +
    1.13 +<div id="header">
    1.14 +	<h1>My Page</h1>
    1.15 +</div>
    1.16 +
    1.17 +<!-- Start content -->
    1.18 +<div id="content">
    1.19 +
    1.20 +<!--
    1.21 +	Welcome to your personnal and custom TazWeb page, a pure xHTML 5 file
    1.22 +	with some CSS for the design, you can customize it as you want. To add
    1.23 +	a section title you can use <h2></h2> elements and <div></div> to
    1.24 +	organize content
    1.25 +
    1.26 +	Here is an example of a bookmark entry, copy and past it somewhere
    1.27 +	between an <ul></ul> element to add a entry in the list.
    1.28 +	
    1.29 +	<li>
    1.30 +		<a href="URL">NAME</a>
    1.31 +		: DESCRIPTION
    1.32 +	</li>
    1.33 +-->
    1.34 +
    1.35 +<div id="cloud">
    1.36 +	<a class="tag4" href="http://www.slitaz.org/">SliTaz Website</a>
    1.37 +	<a class="tag6" href="http://scn.slitaz.org/">SCN</a>
    1.38 +	<a class="tag8" href="http://wikipedia.org/">Wikipedia</a>
    1.39 +	<a class="tag5" href="http://forum.slitaz.org/">SliTaz Forum</a>
    1.40 +	<a class="tag4" href="http://www.google.com/">Google</a>
    1.41 +	<a class="tag6" href="http://doc.slitaz.org/">SliTaz Wiki</a>
    1.42 +	<a class="tag5" href="http://twitter.comc">Twitter</a>
    1.43 +	<a class="tag2" href="http://search.yahoo.com/">Yahoo</a>
    1.44 +	<a class="tag8" href="http://tazpanel:82/">TazPanel</a>
    1.45 +</div>
    1.46 +
    1.47 +<!-- A nice bookmarks list (Uncomment img to have favicons) -->
    1.48 +<div id="bookmarks">
    1.49 +	<h2>Bookmarks</h2>
    1.50 +	<ul>
    1.51 +		<li>
    1.52 +			<!-- <img src="http://www.slitaz.org/favicon.ico" /> -->
    1.53 +			<a href="http://www.slitaz.org/">bugs.slitaz.org</a>
    1.54 +			: SliTaz Bugs tracker
    1.55 +		</li>
    1.56 +		<li>
    1.57 +			<!-- <img src="http://www.gnu.org/favicon.ico" /> -->
    1.58 +			<a href="http://www.gnu.org/">www.gnu.org</a>
    1.59 +			: The GNU Website
    1.60 +		</li>
    1.61 +		<li>
    1.62 +			<!-- <img src="http://is.gd/isgd_favicon.ico" /> -->
    1.63 +			<a href="http://is.gd/">is.gd</a>
    1.64 +			: URL shortener
    1.65 +		</li>
    1.66 +	</ul>
    1.67 +</div>
    1.68 +
    1.69 +<!-- End content -->
    1.70 +</div>
    1.71 +
    1.72 +</body>
    1.73 +</html>