* Make all pages pull in a local.css style sheet, if present. This won't
be included in ikiwiki, but can be created to make local styling changes w/o needing to merge in every new change to the distributed style.css.master
parent
ebf414d3d4
commit
56d0ceee2e
|
@ -1,3 +1,9 @@
|
||||||
|
/* ikiwiki style sheet */
|
||||||
|
|
||||||
|
/* Note that instead of modifying this style sheet, you can instead create
|
||||||
|
* a local.css in your wiki, and override or change settings in this one.
|
||||||
|
*/
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
|
|
|
@ -24,8 +24,11 @@ ikiwiki (1.22) UNRELEASED; urgency=low
|
||||||
that looks like a wikilink will now have it treated as such; AFAIK
|
that looks like a wikilink will now have it treated as such; AFAIK
|
||||||
this doesn't change any behavior though except for the template plugin.
|
this doesn't change any behavior though except for the template plugin.
|
||||||
* Enable preprocessor directives when previewing an edit.
|
* Enable preprocessor directives when previewing an edit.
|
||||||
|
* Make all pages pull in a local.css style sheet, if present. This won't
|
||||||
|
be included in ikiwiki, but can be created to make local styling changes
|
||||||
|
w/o needing to merge in every new change to the distributed style.css.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Wed, 23 Aug 2006 15:30:09 -0400
|
-- Joey Hess <joeyh@debian.org> Thu, 24 Aug 2006 16:29:24 -0400
|
||||||
|
|
||||||
ikiwiki (1.21) unstable; urgency=low
|
ikiwiki (1.21) unstable; urgency=low
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title><TMPL_VAR FORM-TITLE></title>
|
<title><TMPL_VAR FORM-TITLE></title>
|
||||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||||
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<TMPL_IF NAME="PAGE_CONFLICT">
|
<TMPL_IF NAME="PAGE_CONFLICT">
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title><TMPL_VAR TITLE></title>
|
<title><TMPL_VAR TITLE></title>
|
||||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||||
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title><TMPL_VAR TITLE></title>
|
<title><TMPL_VAR TITLE></title>
|
||||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||||
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||||
<TMPL_IF NAME="META">
|
<TMPL_IF NAME="META">
|
||||||
<TMPL_VAR META>
|
<TMPL_VAR META>
|
||||||
</TMPL_IF>
|
</TMPL_IF>
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<title><TMPL_VAR TITLE></title>
|
<title><TMPL_VAR TITLE></title>
|
||||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||||
|
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue