OSDN Git Service

removed grey skin files
authorkimitake <kimitake@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Sat, 16 Apr 2005 05:11:49 +0000 (05:11 +0000)
committerkimitake <kimitake@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Sat, 16 Apr 2005 05:11:49 +0000 (05:11 +0000)
git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/nucleus-jp/trunk@83 1ca29b6e-896d-4ea0-84a5-967f57386b96

12 files changed:
euc/skins/grey/atom3.gif [deleted file]
euc/skins/grey/favicon.ico [deleted file]
euc/skins/grey/grey.css [deleted file]
euc/skins/grey/nucleus.gif [deleted file]
euc/skins/grey/nucleus2.png [deleted file]
euc/skins/grey/nucleus3.png [deleted file]
euc/skins/grey/pagefoot.inc [deleted file]
euc/skins/grey/pagehead.inc [deleted file]
euc/skins/grey/preview-large.png [deleted file]
euc/skins/grey/preview.png [deleted file]
euc/skins/grey/readme.html [deleted file]
euc/skins/grey/skinbackup.xml [deleted file]

diff --git a/euc/skins/grey/atom3.gif b/euc/skins/grey/atom3.gif
deleted file mode 100755 (executable)
index deb891f..0000000
Binary files a/euc/skins/grey/atom3.gif and /dev/null differ
diff --git a/euc/skins/grey/favicon.ico b/euc/skins/grey/favicon.ico
deleted file mode 100755 (executable)
index f04fcc4..0000000
Binary files a/euc/skins/grey/favicon.ico and /dev/null differ
diff --git a/euc/skins/grey/grey.css b/euc/skins/grey/grey.css
deleted file mode 100755 (executable)
index 705c8d4..0000000
+++ /dev/null
@@ -1,237 +0,0 @@
-/*\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/euc/skins/grey/nucleus.gif b/euc/skins/grey/nucleus.gif
deleted file mode 100755 (executable)
index 1cdf680..0000000
Binary files a/euc/skins/grey/nucleus.gif and /dev/null differ
diff --git a/euc/skins/grey/nucleus2.png b/euc/skins/grey/nucleus2.png
deleted file mode 100755 (executable)
index 2a1d464..0000000
Binary files a/euc/skins/grey/nucleus2.png and /dev/null differ
diff --git a/euc/skins/grey/nucleus3.png b/euc/skins/grey/nucleus3.png
deleted file mode 100755 (executable)
index 4b75d28..0000000
Binary files a/euc/skins/grey/nucleus3.png and /dev/null differ
diff --git a/euc/skins/grey/pagefoot.inc b/euc/skins/grey/pagefoot.inc
deleted file mode 100755 (executable)
index 1630898..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-</div><!-- end of the contents div -->\r
-\r
-<!-- definition of the logo (left-top) -->\r
-<div class="logo">\r
- <img src="<%skinfile(atom.gif)%>" 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
-\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.gif,46,43)%>\r
-\r
-</div>\r
-\r
-</body>\r
-</html>
\ No newline at end of file
diff --git a/euc/skins/grey/pagehead.inc b/euc/skins/grey/pagehead.inc
deleted file mode 100755 (executable)
index 51106ac..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\r
-\r
-<html>\r
-<head>\r
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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">\r
diff --git a/euc/skins/grey/preview-large.png b/euc/skins/grey/preview-large.png
deleted file mode 100755 (executable)
index e54c035..0000000
Binary files a/euc/skins/grey/preview-large.png and /dev/null differ
diff --git a/euc/skins/grey/preview.png b/euc/skins/grey/preview.png
deleted file mode 100755 (executable)
index 1451e53..0000000
Binary files a/euc/skins/grey/preview.png and /dev/null differ
diff --git a/euc/skins/grey/readme.html b/euc/skins/grey/readme.html
deleted file mode 100755 (executable)
index 7db05a8..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-<!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/euc/skins/grey/skinbackup.xml b/euc/skins/grey/skinbackup.xml
deleted file mode 100755 (executable)
index ee593ea..0000000
+++ /dev/null
@@ -1,705 +0,0 @@
-<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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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%>">Á°¤Î<%archivetype%></a></li>\r
-   <li><a href="<%nextlink%>">¼¡¤Î<%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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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
-  <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />\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.gif)%>" 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.gif,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%>">%Y-%m</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>%Y-%m-%d</h2>]]></part>\r
-<part name="EDITLINK"><![CDATA[<a href="<%editlink%>" onclick="<%editpopupcode%>">edit</a> -]]></part>\r
-<part name="FORMAT_DATE"><![CDATA[%Y-%m-%d]]></part>\r
-<part name="FORMAT_TIME"><![CDATA[%H:%M:%S]]></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[ja_JP.EUC-JP]]></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[%Y-%m-%d]]></part>\r
-<part name="FORMAT_TIME"><![CDATA[%H:%M:%S]]></part>\r
-<part name="IMAGE_CODE"><![CDATA[<%image%>]]></part>\r
-\r
-<part name="ITEM"><![CDATA[\r
-<h2><%date(%Y-%m-%d)%></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[ja_JP.EUC-JP]]></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>\r