| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<!-- |
|---|
| 3 |
Licensed to Jasig under one or more contributor license |
|---|
| 4 |
agreements. See the NOTICE file distributed with this work |
|---|
| 5 |
for additional information regarding copyright ownership. |
|---|
| 6 |
Jasig licenses this file to you under the Apache License, |
|---|
| 7 |
Version 2.0 (the "License"); you may not use this file |
|---|
| 8 |
except in compliance with the License. You may obtain a |
|---|
| 9 |
copy of the License at: |
|---|
| 10 |
|
|---|
| 11 |
http://www.apache.org/licenses/LICENSE-2.0 |
|---|
| 12 |
|
|---|
| 13 |
Unless required by applicable law or agreed to in writing, |
|---|
| 14 |
software distributed under the License is distributed on |
|---|
| 15 |
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
|---|
| 16 |
KIND, either express or implied. See the License for the |
|---|
| 17 |
specific language governing permissions and limitations |
|---|
| 18 |
under the License. |
|---|
| 19 |
--> |
|---|
| 20 |
<xsl:stylesheet version="1.0" |
|---|
| 21 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 22 |
xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 23 |
|
|---|
| 24 |
<xsl:output method="xml" indent="no" media-type="text/html" |
|---|
| 25 |
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" |
|---|
| 26 |
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" |
|---|
| 27 |
standalone="yes" omit-xml-declaration="yes" /> |
|---|
| 28 |
|
|---|
| 29 |
<!-- ========================================================= |
|---|
| 30 |
|
|---|
| 31 |
DEMONSTRATION CALENDAR STYLESHEET |
|---|
| 32 |
|
|---|
| 33 |
MainCampus Calendar Suite |
|---|
| 34 |
|
|---|
| 35 |
This stylesheet is devoid of school branding. It is a good |
|---|
| 36 |
starting point for development of a customized theme. |
|---|
| 37 |
|
|---|
| 38 |
For detailed instructions on how to work with the XSLT |
|---|
| 39 |
stylesheets included with this distribution, please see the |
|---|
| 40 |
Bedework Manual at http://www.jasig.org/bedework/documentation |
|---|
| 41 |
|
|---|
| 42 |
=============================================================== --> |
|---|
| 43 |
|
|---|
| 44 |
<!-- DEFINE INCLUDES --> |
|---|
| 45 |
<xsl:include href="./globals.xsl" /> |
|---|
| 46 |
<xsl:include href="../strings.xsl" /> |
|---|
| 47 |
|
|---|
| 48 |
<!-- THEME NAME --> |
|---|
| 49 |
<xsl:include href="../../themes/bwclassicTheme/bwclassic.xsl" /> |
|---|
| 50 |
|
|---|
| 51 |
</xsl:stylesheet> |
|---|