OSDN Git Service

Include Grey skin. This is a good stuff for studying how to make a skin for Nucleus...
authorsakamocchi <sakamocchi@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Fri, 14 Jan 2011 02:37:08 +0000 (02:37 +0000)
committersakamocchi <sakamocchi@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Fri, 14 Jan 2011 02:37:08 +0000 (02:37 +0000)
git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk@1089 1ca29b6e-896d-4ea0-84a5-967f57386b96

12 files changed:
utf8/skins/grey/atom3.png [new file with mode: 0644]
utf8/skins/grey/favicon.ico [new file with mode: 0644]
utf8/skins/grey/grey.css [new file with mode: 0644]
utf8/skins/grey/nucleus.png [new file with mode: 0644]
utf8/skins/grey/nucleus2.png [new file with mode: 0644]
utf8/skins/grey/nucleus3.png [new file with mode: 0644]
utf8/skins/grey/pagefoot.inc [new file with mode: 0644]
utf8/skins/grey/pagehead.inc [new file with mode: 0644]
utf8/skins/grey/preview-large.png [new file with mode: 0644]
utf8/skins/grey/preview.png [new file with mode: 0644]
utf8/skins/grey/readme.html [new file with mode: 0644]
utf8/skins/grey/skinbackup.xml [new file with mode: 0644]

diff --git a/utf8/skins/grey/atom3.png b/utf8/skins/grey/atom3.png
new file mode 100644 (file)
index 0000000..2f23824
Binary files /dev/null and b/utf8/skins/grey/atom3.png differ
diff --git a/utf8/skins/grey/favicon.ico b/utf8/skins/grey/favicon.ico
new file mode 100644 (file)
index 0000000..f04fcc4
Binary files /dev/null and b/utf8/skins/grey/favicon.ico differ
diff --git a/utf8/skins/grey/grey.css b/utf8/skins/grey/grey.css
new file mode 100644 (file)
index 0000000..705c8d4
--- /dev/null
@@ -0,0 +1,237 @@
+/*\r
+       This is the CSS stylesheet that is used for the default Nucleus skin.\r
+       \r
+       Here's how the pages are built up:\r
+\r
+       (Note: the format outlined below is NOT mandatory. If you want your \r
+        site to use another structure, edit skins and templates, and define \r
+        your own stylesheet. The default skins and templates only serves as \r
+        an example of how a site running Nucleus can look.)\r
+\r
+       MAIN PAGE\r
+       ---------\r
+\r
+       body\r
+         div.contents\r
+           h1 (site title)\r
+             h2 (date header)\r
+               h3 (item title)\r
+                 div.itembody (item text)\r
+                 span.iteminfo (time / author / editlink / amount of comments)\r
+         div.logo\r
+         div.menu\r
+           h1 (navigation, hidden link)\r
+             h2 (menu titles)\r
+       \r
+       DETAILED PAGE\r
+       -------------\r
+       body\r
+         div.contents\r
+           h1 (site title)\r
+             h2 (item title)\r
+               div.itembody (item text)\r
+               div.iteminfo (item info)\r
+             h2 (comments)\r
+               h3 (commentor name)\r
+                 div.commentbody\r
+             h2 (add comment)\r
+         div.logo\r
+         div.menu      \r
+           h1 (navigation, hidden link)\r
+             h2 (menu titles)\r
+\r
+       OTHER PAGES\r
+       -----------\r
+       \r
+       other pages are similar, having a .contents and a .menu part\r
+*/\r
\r
+\r
+/*\r
+       The body definitions define how the page should globally look:\r
+       - a small verdana, arial or font from the sans-serif family\r
+       - black text on a white background\r
+*/\r
+\r
+\r
+body {\r
+       font-family: verdana, arial, sans-serif;\r
+       font-size: small;       \r
+       background-color: #fff;\r
+       color: #000;\r
+}\r
+\r
+/* \r
+       The definitions below determine how the page looks.\r
+       \r
+       There are 3 main div-elements, which are all positioned absolute\r
+       (relative to the upper left corner of the screen):\r
+       \r
+       .contents: contains the main contents of the page.\r
+       .menu: sidebar with menu\r
+       .logo: logo to be displayed above the sidebar\r
+\r
+*/\r
+\r
+/* definitions applying to the contents block */\r
+.contents {\r
+       position: absolute;\r
+\r
+       left: 200px;\r
+       width: 550px;\r
+}\r
+\r
+/* definitions applying to the logo */\r
+.logo {\r
+       position: absolute;\r
+\r
+       top: 20px;\r
+       left: 20px;\r
+}\r
+\r
+.menu {\r
+       position: absolute;\r
+\r
+       top: 175px;\r
+       left: 30px;\r
+       width: 110px;\r
+\r
+       /* use a lighter text color (grey) and a smaller font */\r
+       color: #777;\r
+       font-size: small;       \r
+}\r
+\r
+/*\r
+       Definitions for headers in the menu (.menu h2), page titles (h1) \r
+       and dateheads (.contents h2):\r
+       - page titles are centered (within the .contents div)\r
+       - menu headers (h2) use a small font\r
+       - dateheads use a large font and are in a box\r
+*/\r
+\r
+h1 {\r
+       text-align: center;\r
+}\r
+\r
+.menu h2 {\r
+       font-size: small;\r
+}\r
+\r
+.contents h2 {\r
+       background-color: whitesmoke;\r
+       border: 1px solid #ccc;\r
+\r
+       padding: 5px; \r
+       \r
+       font-size: large;\r
+\r
+       margin-bottom: 5px;\r
+}\r
+\r
+/* \r
+       Definitions for the item listings like they are done on the main page and in archives\r
+       - h3.item is the title of an item (<h3 class="item">)\r
+       - .itembody is the item contents\r
+       - .iteminfo contains the time of posting and the name of the author, and the amount of comments\r
+       \r
+       anchors in the iteminfo (.iteminfo a) are not underlined and bold\r
+*/\r
+\r
+/* item title */\r
+h3.item {\r
+       font-size: medium;\r
+       margin: 0px;\r
+       margin-top: 10px;\r
+}\r
+\r
+.itembody {    \r
+       margin-top: 5px;        \r
+       margin-bottom: 5px;\r
+}\r
+\r
+.iteminfo {    \r
+       font-size: x-small;\r
+       color: gray;\r
+}\r
+\r
+.iteminfo a {\r
+       font-weight: bolder;\r
+       color: #555;\r
+       text-decoration: none;\r
+}\r
+\r
+/*\r
+       Definitions of how comments listings look like on item pages\r
+       - h3.comment contains the name of the comment author\r
+       - .commentbody contains the text from the comment\r
+       - .commentinfo contains the time of commenting\r
+*/\r
+\r
+/* comment title */\r
+h3.comment {\r
+       font-size: medium;\r
+       margin-bottom: 10px;\r
+}\r
+\r
+.commentbody {\r
+       text-align: justify;\r
+}\r
+\r
+.commentinfo { \r
+       font-size: x-small;\r
+       color: gray;\r
+}\r
+\r
+\r
+/*\r
+       Some rules that apply to contents generated using the markup buttons \r
+       "add left box" and "add right box"\r
+       \r
+       both boxes have slightly larger text, and take a maximum of 20% of \r
+       the width of the contents.\r
+*/\r
+\r
+.leftbox, .rightbox {\r
+       margin: 3px;\r
+       padding: 3px;\r
+       font-size: larger;\r
+       width: 20%;\r
+}\r
+.leftbox {\r
+       float: left;\r
+       border-right: 2px solid #ccc;   \r
+}\r
+.rightbox {\r
+       float: right;\r
+       border-left: 2px solid #ccc;    \r
+}\r
+\r
+\r
+/*\r
+       Some general rules:\r
+       - images never have a border (even when they are inside a hyperlink)\r
+       - elements having class="skip" are not shown\r
+       - item lists using <ul class="nobullets"> have no list-item bullets\r
+       - highlighted text (in search results) have a yellow background\r
+*/\r
+\r
+img {\r
+       border: none;\r
+}\r
+\r
+.skip {\r
+       display: none;\r
+}\r
+\r
+ul.nobullets {\r
+       list-style: none;\r
+       margin-left: 0px;\r
+       padding-left: 0px;\r
+}\r
+\r
+.highlight {\r
+       background-color: yellow;\r
+}\r
+\r
+\r
+\r
diff --git a/utf8/skins/grey/nucleus.png b/utf8/skins/grey/nucleus.png
new file mode 100644 (file)
index 0000000..d63520b
Binary files /dev/null and b/utf8/skins/grey/nucleus.png differ
diff --git a/utf8/skins/grey/nucleus2.png b/utf8/skins/grey/nucleus2.png
new file mode 100644 (file)
index 0000000..2a1d464
Binary files /dev/null and b/utf8/skins/grey/nucleus2.png differ
diff --git a/utf8/skins/grey/nucleus3.png b/utf8/skins/grey/nucleus3.png
new file mode 100644 (file)
index 0000000..4b75d28
Binary files /dev/null and b/utf8/skins/grey/nucleus3.png differ
diff --git a/utf8/skins/grey/pagefoot.inc b/utf8/skins/grey/pagefoot.inc
new file mode 100644 (file)
index 0000000..d9e8c93
--- /dev/null
@@ -0,0 +1,43 @@
+</div>\r
+<!-- end of the contents div -->\r
+\r
+<!-- definition of the logo (left-top) -->\r
+<div class="logo">\r
+<img src="<%skinfile(atom.png)%>" width="150" height="150" alt="" /> \r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+<!-- accessibility anchor -->\r
+<a name="navigation" id="navigation" class="skip"></a>\r
+<h1 class="skip">Navigation</h1>\r
+\r
+<h2>Navigation</h2>\r
+<ul class="nobullets">\r
+<li><a href="<%todaylink%>">Today</a></li>\r
+<li><a href="<%archivelink%>">Archives</a></li>\r
+<li><a href="<%adminurl%>">Admin Area</a></li>\r
+</ul>\r
+\r
+<h2>Categories</h2>\r
+<%categorylist(default)%>\r
+\r
+<h2>Search</h2>\r
+<%searchform%>\r
\r
+<h2>Login</h2>\r
+<%loginform%>\r
+\r
+<h2>My Links</h2>\r
+<ul class="nobullets">\r
+<li><a href="http://nucleuscms.org/" title="This site is Nucleus-powered">Nucleus</a></li>\r
+<li><a href="http://www.weblogs.com/" title="latest updates">Weblogs.com</a></li>\r
+<li><a href="http://www.daypop.com/" title="Search news &amp; weblog sites">DayPop</a></li>\r
+<li><a href="http://www.google.com/" title="Search the web">Google</a></li>\r
+</ul>\r
+\r
+<h2>powered by</h2>\r
+<%nucleusbutton(nucleus2.png,46,43)%>\r
+</div>\r
+</body>\r
+</html>
\ No newline at end of file
diff --git a/utf8/skins/grey/pagehead.inc b/utf8/skins/grey/pagehead.inc
new file mode 100644 (file)
index 0000000..c4e7d15
--- /dev/null
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+<html>\r
+<head>\r
+<title><%blogsetting(name)%></title>\r
+\r
+<!-- some meta information (search engines might read this) -->\r
+<meta name="generator" content="<%version%>" />\r
+<meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+<!-- stylesheet definition (points to the place where colors -->\r
+<!-- and layout is defined -->\r
+<link rel="stylesheet" type="text/css" href="<%skinfile(default.css)%>" />\r
+\r
+<!-- alternative versions (rss/atom feeds) -->\r
+<link rel="alternate" type="application/rss+xml" title="RSS" href="<%blogurl%>xml-rss2.php" />\r
+<link rel="alternate" type="application/atom+xml" title="Atom" href="<%blogurl%>atom.php" />\r
+<link rel="EditURI" type="application/rsd+xml" title="RSD" href="<%blogurl%>rsd.php" />\r
+\r
+<!-- prevent caching (can be removed) -->\r
+<meta http-equiv="Pragma" content="no-cache" />\r
+<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+<meta http-equiv="Expires" content="-1" />\r
+\r
+<!-- extra navigational links -->\r
+<link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+<link rel="archives" title="Archives" href="<%archivelink%>" />\r
+<link rel="top" title="Today" href="<%todaylink%>" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- this is a normally hidden link, included for accessibility reasons -->\r
+<a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+<div class="contents">
\ No newline at end of file
diff --git a/utf8/skins/grey/preview-large.png b/utf8/skins/grey/preview-large.png
new file mode 100644 (file)
index 0000000..e54c035
Binary files /dev/null and b/utf8/skins/grey/preview-large.png differ
diff --git a/utf8/skins/grey/preview.png b/utf8/skins/grey/preview.png
new file mode 100644 (file)
index 0000000..1451e53
Binary files /dev/null and b/utf8/skins/grey/preview.png differ
diff --git a/utf8/skins/grey/readme.html b/utf8/skins/grey/readme.html
new file mode 100644 (file)
index 0000000..13b1425
--- /dev/null
@@ -0,0 +1,12 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\r
+<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">\r
+<head>\r
+<title>Nucleus - Grey Skin</title>\r
+<link rel="stylesheet" type="text/css" href="../../nucleus/styles/manual.css" />\r
+</head>\r
+<body>\r
+<h1>Nucleus Grey Skin</h1>\r
+\r
+<p>This is the default skin that comes with Nucleus.</p>\r
+</body>\r
+</html>
\ No newline at end of file
diff --git a/utf8/skins/grey/skinbackup.xml b/utf8/skins/grey/skinbackup.xml
new file mode 100644 (file)
index 0000000..cc41535
--- /dev/null
@@ -0,0 +1,697 @@
+<nucleusskin>\r
+\r
+<meta><skin name="grey" /><template name="grey/short" /><template name="grey/full" /><info><![CDATA[Default (sample) skin]]></info></meta>\r
+\r
+<skin name="grey" type="text/html" includeMode="skindir" includePrefix="grey/"><description>Default skin to display your blog</description>\r
+\r
+<part name="archive">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%blogsetting(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+  <meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="xml-rss2.php" />\r
+  <link rel="archives" title="Archives" href="<%archivelink%>" />\r
+  <link rel="top" title="Today" href="<%sitevar(url)%>" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- a title -->\r
+ <h1><%blogsetting(name)%></h1>\r
+\r
+ <!-- This tag inserts the archive using the grey/short template -->\r
+ <%archive(grey/short)%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+\r
+ <ul class="nobullets">\r
+   <li><a href="<%prevlink%>">Previous <%archivetype%></a></li>\r
+   <li><a href="<%nextlink%>">Next <%archivetype%></a></li>\r
+   <li><a href="<%todaylink%>">Today</a></li>\r
+   <li><a href="<%archivelink%>">Archives</a></li>\r
+   <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
+\r
+ <h2>Categories</h2>\r
+ <%categorylist(grey/short)%>\r
+\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="archivelist">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%blogsetting(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+  <meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="xml-rss2.php" />\r
+  <link rel="archives" title="Archives" href="<%archivelink%>" />\r
+  <link rel="top" title="Today" href="<%sitevar(url)%>" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+<!-- a title -->\r
+<h1><%blogsetting(name)%></h1>\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <h2>Archives</h2>\r
+ <!-- This tag inserts the archivelist using the grey/short template -->\r
+ <%archivelist(grey/short)%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a> \r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+ <ul class="nobullets">\r
+   <li><a href="<%todaylink%>">Today</a></li>\r
+   <li><a href="<%archivelink%>">Archives</a></li>\r
+   <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
+\r
+ <h2>Categories</h2>\r
+ <%categorylist(grey/short)%>\r
\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="error">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%sitevar(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="top" title="Today" href="<%todaylink%>" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+</div>\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- a title -->\r
+ <h1><%sitevar(name)%></h1>\r
+\r
+ <h2>Error!</h2>\r
+\r
+ <p><%errormessage%></p>\r
+\r
+ <p><a href="javascript:history.go(-1);">Go back</a></p>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+\r
+ <ul class="nobullets">\r
+  <li><a href="<%todaylink%>">Today</a></li>\r
+  <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="imagepopup">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%imagetext%></title>\r
+  <style type="text/css">\r
+   img { border: none; }\r
+   body { margin: 0px; }\r
+  </style>\r
+</head>\r
+<body onblur="window.close()">\r
+  <a href="javascript:window.close();"><%image%></a>\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="index">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%blogsetting(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+  <meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="archives" title="Archives" href="<%archivelink%>" />\r
+  <link rel="top" title="Today" href="<%todaylink%>" />\r
+\r
+  <!-- link RSS as alternate version -->\r
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="xml-rss2.php" />\r
+\r
+  <!-- RSD support -->\r
+  <link rel="EditURI" type="application/rsd+xml" title="RSD" href="rsd.php" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+ <!-- page title -->\r
+ <h1><%blogsetting(name)%></h1>\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- this tag inserts a weblog using the template named 'grey/short'   -->\r
+ <!-- and showing 15 entries                                                -->\r
+ <%blog(grey/short,15)%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo (left-top) -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+ <ul class="nobullets">\r
+  <li><a href="<%todaylink%>">Today</a></li>\r
+  <li><a href="<%archivelink%>">Archives</a></li>\r
+  <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
+\r
+ <h2>Categories</h2>\r
+ <%categorylist(grey/short)%>\r
+\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>My Links</h2>\r
+\r
+ <ul class="nobullets">\r
+  <li><a href="http://nucleuscms.org/" title="This site is Nucleus-powered">Nucleus</a></li>\r
+  <li><a href="http://www.weblogs.com/" title="latest updates">Weblogs</a></li>\r
+  <li><a href="http://www.daypop.com/" title="Search news &amp; weblog sites">DayPop</a></li>\r
+  <li><a href="http://www.google.com/" title="Search the web">Google</a></li>\r
+ </ul>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="item">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%itemtitle%> - <%blogsetting(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+  <meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="xml-rss2.php" />\r
+  <link rel="archives" title="Archives" href="<%archivelink%>" />\r
+  <link rel="top" title="Today" href="<%sitevar(url)%>" />\r
+  <link rel="next" href="<%nextlink%>" title="Next Item" />\r
+  <link rel="prev" href="<%prevlink%>" title="Previous Item" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+ <!-- page title -->\r
+ <h1><%blogsetting(name)%></h1>\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- inserts the selected item using the template named 'grey/full'     -->\r
+ <%item(grey/full)%>\r
+\r
+ <!-- this tag inserts the comments on the selected item, also using the -->\r
+ <!-- template with name 'grey/full'                                     -->\r
+ <h2>Comments</h2>\r
+ <%comments(grey/full)%>\r
+\r
+ <h2>Add Comments</h2>\r
+ <%commentform%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+ <ul class="nobullets">\r
+  <li><a href="<%nextlink%>">Previous Item</a></li>\r
+  <li><a href="<%prevlink%>">Next Item</a></li>\r
+  <li><a href="<%todaylink%>">Today</a></li>\r
+  <li><a href="<%archivelink%>">Archives</a></li>\r
+  <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
+\r
+ <h2>Categories</h2>\r
+ <%categorylist(grey/short)%>\r
+\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="member">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%sitevar(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+\r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="top" title="Today" href="<%todaylink%>" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- a title -->\r
+ <h1><%sitevar(name)%></h1>\r
+\r
+ <h2>Info about <%member(name)%></h2>\r
+\r
+ <ul>\r
+  <li>Real name: <%member(realname)%></li>\r
+  <li>Website: <a href="<%member(url)%>"><%member(url)%></a></li>\r
+ </ul>\r
+\r
+ <h2>Send Message</h2>\r
+ <%membermailform%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+\r
+ <ul class="nobullets">\r
+  <li><a href="<%todaylink%>">Today</a></li>\r
+  <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+<part name="search">\r
+\r
+<![CDATA[<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
+\r
+<html>\r
+<head>\r
+  <title><%blogsetting(name)%></title>\r
+\r
+  <!-- some meta information (search engines might read this) -->\r
+  <meta name="generator" content="<%version%>" />\r
+  <meta name="description" content="<%blogsetting(desc)%>" />\r
+\r
+  <!-- stylesheet definition (points to the place where colors -->\r
+  <!-- and layout is defined -->\r
+  <link rel="stylesheet" type="text/css" href="<%skinfile(grey.css)%>" />\r
+  \r
+  <!-- prevent caching (can be removed) -->\r
+  <meta http-equiv="Pragma" content="no-cache" />\r
+  <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />\r
+  <meta http-equiv="Expires" content="-1" />\r
+  \r
+  <!-- extra navigational links -->\r
+  <link rel="bookmark" title="Nucleus" href="http://nucleuscms.org/" />\r
+  <link rel="alternate" type="application/rss+xml" title="RSS" href="xml-rss2.php" />\r
+  <link rel="archives" title="Archives" href="<%archivelink%>" />\r
+  <link rel="top" title="Today" href="<%sitevar(url)%>" />\r
+  <link rel="up" href="<%todaylink%>" title="Today" />\r
+\r
+</head>\r
+<body>\r
+\r
+<!-- here starts the code that will be displayed in your browser -->\r
+<div class="contents">\r
+\r
+ <!-- this is a normally hidden link, included for accessibility reasons -->\r
+ <a href="#navigation" class="skip">Jump to navigation</a>\r
+\r
+ <!-- a title -->\r
+ <h1><%blogsetting(name)%></h1>\r
+\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
+\r
+ <h2>Search results</h2>\r
+ <%searchresults(grey/short)%>\r
+\r
+</div><!-- end of the contents div -->\r
+\r
+<!-- definition of the logo left-top -->\r
+<div class="logo">\r
+ <a href="<%sitevar(url)%>"><img src="<%skinfile(atom3.png)%>" width="155" height="137" alt="" /></a>\r
+</div>\r
+\r
+<!-- definition of the menu -->\r
+<div class="menu">\r
+ <!-- accessibility anchor -->\r
+ <a name="navigation" id="navigation" class="skip"></a>\r
+ <h1 class="skip">Navigation</h1>\r
+\r
+ <h2>Navigation</h2>\r
+\r
+ <ul class="nobullets">\r
+   <li><a href="<%todaylink%>">Today</a></li>\r
+   <li><a href="<%archivelink%>">Archives</a></li>\r
+   <li><a href="<%adminurl%>">Admin Area</a></li>\r
+ </ul>\r
+\r
+ <h2>Search</h2>\r
+ <%searchform%>\r
\r
+ <h2>Login</h2>\r
+ <%loginform%>\r
+\r
+ <h2>Powered by</h2>\r
+ <%nucleusbutton(nucleus.png,85,31)%>\r
+\r
+</div>\r
+\r
+</body>\r
+</html>]]></part>\r
+\r
+</skin>\r
+\r
+<template name="grey/short"><description>The default template that is used to display your Nucleus blog</description>\r
+\r
+<part name="ARCHIVELIST_FOOTER"><![CDATA[</ul>]]></part>\r
+<part name="ARCHIVELIST_HEADER"><![CDATA[<ul>]]></part>\r
+<part name="ARCHIVELIST_LISTITEM"><![CDATA[<li><a href="<%archivelink%>">%B, %Y</a></li>]]></part>\r
+<part name="CATLIST_FOOTER"><![CDATA[</ul>]]></part>\r
+<part name="CATLIST_HEADER"><![CDATA[<ul class="nobullets"><li><a href="<%blogurl%>">All</a></li>]]></part>\r
+<part name="CATLIST_LISTITEM"><![CDATA[ <li><a href="<%catlink%>"><%catname%></a></li>]]></part>\r
+<part name="COMMENTS_MANY"><![CDATA[comments]]></part>\r
+<part name="COMMENTS_NONE"><![CDATA[<a href="<%itemlink%>" rel="bookmark">No <%commentword%></a>]]></part>\r
+<part name="COMMENTS_ONE"><![CDATA[comment]]></part>\r
+<part name="COMMENTS_TOOMUCH"><![CDATA[<a href="<%itemlink%>" rel="bookmark"><%commentcount%> <%commentword%></a>]]></part>\r
+<part name="DATE_HEADER"><![CDATA[<h2>%d %B</h2>]]></part>\r
+<part name="EDITLINK"><![CDATA[<a href="<%editlink%>" onclick="<%editpopupcode%>">edit</a> -]]></part>\r
+<part name="FORMAT_DATE"><![CDATA[%x]]></part>\r
+<part name="FORMAT_TIME"><![CDATA[%X]]></part>\r
+<part name="IMAGE_CODE"><![CDATA[<%image%>]]></part>\r
+\r
+<part name="ITEM"><![CDATA[\r
+<h3 class="item"><%title%></h3>\r
+\r
+<div class="itembody">\r
+  <%body%>\r
+  <%morelink%>\r
+</div>\r
+\r
+<div class="iteminfo">\r
+  <%time%> -\r
+  <a href="<%authorlink%>"><%author%></a> -\r
+  <%edit%>\r
+  <%comments%>\r
+</div>\r
+]]></part>\r
+\r
+<part name="LOCALE"><![CDATA[en]]></part>\r
+<part name="MEDIA_CODE"><![CDATA[<%media%>]]></part>\r
+<part name="MORELINK"><![CDATA[<a href="<%itemlink%>">[Read More!]</a>]]></part>\r
+<part name="POPUP_CODE"><![CDATA[<%popuplink%>]]></part>\r
+<part name="SEARCH_HIGHLIGHT"><![CDATA[<span class="highlight">\0</span>]]></part>\r
+<part name="SEARCH_NOTHINGFOUND"><![CDATA[No search results found for <b><%query%></b>]]></part>\r
+\r
+</template>\r
+\r
+<template name="grey/full"><description>Used for detailed item pages</description>\r
+\r
+<part name="COMMENTS_BODY"><![CDATA[<h3 class="comment"><%userlink%> wrote:</h3>\r
+\r
+<div class="commentbody">\r
+  <%body%>\r
+</div>\r
+\r
+<div class="commentinfo">\r
+  <%date%> <%time%>\r
+</div>]]></part>\r
+<part name="COMMENTS_MANY"><![CDATA[comments]]></part>\r
+<part name="COMMENTS_NONE"><![CDATA[<div class="comments">No comments yet</div>]]></part>\r
+<part name="COMMENTS_ONE"><![CDATA[comment]]></part>\r
+<part name="EDITLINK"><![CDATA[- <a href="<%editlink%>" onclick="<%editpopupcode%>">edit</a>]]></part>\r
+<part name="FORMAT_DATE"><![CDATA[%x]]></part>\r
+<part name="FORMAT_TIME"><![CDATA[%X]]></part>\r
+<part name="IMAGE_CODE"><![CDATA[<%image%>]]></part>\r
+\r
+<part name="ITEM"><![CDATA[\r
+<h2><%date(%d %B)%></h2>\r
+<h3 class="item"><%title%></h3>\r
+\r
+<div class="itembody">\r
+  <%body%>\r
+  <br /><br />\r
+  <%more%>\r
+</div>\r
+\r
+<div class="iteminfo">\r
+  posted at <%time%> on <%date%>\r
+  by <a href="?memberid=<%authorid%>"><%author%></a> -\r
+  Category: <a href="<%categorylink%>"><%category%></a>\r
+  <%edit%>\r
+</div>\r
+]]></part>\r
+\r
+<part name="LOCALE"><![CDATA[en]]></part>\r
+<part name="MEDIA_CODE"><![CDATA[<%media%>]]></part>\r
+<part name="POPUP_CODE"><![CDATA[<%popuplink%>]]></part>\r
+<part name="SEARCH_HIGHLIGHT"><![CDATA[<span class="highlight">\0</span>]]></part>\r
+\r
+</template>\r
+\r
+</nucleusskin>
\ No newline at end of file