diff --git a/templates/default/content-addform-thanks.html b/templates/default/content-addform-thanks.html new file mode 100755 index 0000000..483fc24 --- /dev/null +++ b/templates/default/content-addform-thanks.html @@ -0,0 +1,2 @@ +Thank you for using Kwotes!
+Your quote may be accessed here: #${KWOTE_ID}. \ No newline at end of file diff --git a/templates/default/content-addform.html b/templates/default/content-addform.html new file mode 100755 index 0000000..0e351ee --- /dev/null +++ b/templates/default/content-addform.html @@ -0,0 +1,7 @@ +
+
+ +
+ +
+
\ No newline at end of file diff --git a/templates/default/content-default.html b/templates/default/content-default.html new file mode 100755 index 0000000..5b3550b --- /dev/null +++ b/templates/default/content-default.html @@ -0,0 +1,15 @@ +

+ Welcome to Kwotes, a chat quote database system with a twist. + The quotes are publicly moderated, so it's up to YOU to maintain the quality. + All quotes are accepted and if their ranking falls too low for too long, they are deleted. + To better your kwote browsing experience, visit the search page. +

+ + This system has advantages over existing systems. Here are a few: + diff --git a/templates/default/content-error.html b/templates/default/content-error.html new file mode 100755 index 0000000..b225e67 --- /dev/null +++ b/templates/default/content-error.html @@ -0,0 +1,3 @@ + +

${ERROR_MESSAGE}

+ diff --git a/templates/default/content-list-navigate-no-back.html b/templates/default/content-list-navigate-no-back.html new file mode 100755 index 0000000..838e915 --- /dev/null +++ b/templates/default/content-list-navigate-no-back.html @@ -0,0 +1,4 @@ + +
+ Next > +
diff --git a/templates/default/content-list-navigate-no-forward.html b/templates/default/content-list-navigate-no-forward.html new file mode 100755 index 0000000..0609152 --- /dev/null +++ b/templates/default/content-list-navigate-no-forward.html @@ -0,0 +1,4 @@ +
+ < Previous +
+ diff --git a/templates/default/content-list-navigate.html b/templates/default/content-list-navigate.html new file mode 100755 index 0000000..23a115f --- /dev/null +++ b/templates/default/content-list-navigate.html @@ -0,0 +1,7 @@ +
+ < +Previous +   |   + Next > +
+ diff --git a/templates/default/content-search.html b/templates/default/content-search.html new file mode 100755 index 0000000..e5c203b --- /dev/null +++ b/templates/default/content-search.html @@ -0,0 +1,87 @@ +
+
+ + + +
+ All fields are optional. Choosing a random sort order disables paging. + Search keywords can be seperated using a coma. +
+ +
+ Search text: + +
+ +
+ Sort by: + + + +
+ +
+ Sort direction: + + + +
+ +
+ Per page: + + + +
+ +
+ Max results: + + + +
+ +
+ Minimum rating: + + + +
+ +
+ Maximum rating: + + + +
+ +
+ +
+ +
+
diff --git a/templates/default/content-show-kwote.html b/templates/default/content-show-kwote.html new file mode 100755 index 0000000..4fe8a39 --- /dev/null +++ b/templates/default/content-show-kwote.html @@ -0,0 +1,16 @@ +
+ #${KWOTE_ID} + + - + ${KWOTE_RATING} + + + + +
+ ${KWOTE_TEXT_HTML} +
+
diff --git a/templates/default/footer.html b/templates/default/footer.html new file mode 100755 index 0000000..c87428f --- /dev/null +++ b/templates/default/footer.html @@ -0,0 +1,22 @@ + + + + + diff --git a/templates/default/header.html b/templates/default/header.html new file mode 100755 index 0000000..9c09e4e --- /dev/null +++ b/templates/default/header.html @@ -0,0 +1,72 @@ + + + + + + + ${TITLE} + + + + + + + + + +
+
+
+
+ + Kwote #  +
+
+ ${SITE_NAME} - ${TAG_LINE} +
+ + + diff --git a/templates/default/kwotes-ie.css b/templates/default/kwotes-ie.css new file mode 100755 index 0000000..3e5298c --- /dev/null +++ b/templates/default/kwotes-ie.css @@ -0,0 +1,12 @@ +/* Stupid IE stuff... at least they get to see something hilite */ +.tab a:active +{ + background-color: #8b8bca; +} + +.tab a:hover +{ + background-color: #dfdff0; +} +/* End stupid IE stuff */ + diff --git a/templates/default/kwotes.css b/templates/default/kwotes.css new file mode 100755 index 0000000..d95a07b --- /dev/null +++ b/templates/default/kwotes.css @@ -0,0 +1,150 @@ +body +{ + font-family: Trebuchet MS, Tahoma, Arial, Sans-Serif; + margin: 0px; +} + +a:link +{ + text-decoration: none; + color: #000000; +} + +a:visited +{ + text-decoration: none; + color: #000000; +} + +a:hover, a:active +{ + text-decoration: underline; + color: #666666; +} + +a img +{ + border: 0px; +} + +/* Containers */ +.container +{ + position: relative; + width: 700px; + margin-left: auto; + margin-right: auto; +} + +.kwote-container +{ + position: relative; + width: 100%; +} + +/* Header Section */ +.id-search +{ + float: right; +} + +.id-search input +{ + height: 16px; + background-color: #6c97fb; + border: solid 1px black; + padding-left: 3px; +} + +.title +{ + font-weight: bold; +} + +/* Kwotes */ +.kwote +{ + position: relative; + margin-bottom: 10px; +} + +.kwote-id +{ + float: left; + font-size: 0.8em; +} + +.vote-controls +{ + float: right; + font-size: 0.8em; + padding: 0px; +} + +.vote-controls a +{ + font-size: 1.25em; + font-weight: bolder; + text-decoration: none; + padding: 0px 1px 0px 1px; +} + +.kwote-content +{ + clear: both; + font-size: 0.9em; + border-top: 1px solid black; +} + +/* Is this needed? */ +.kwote-navigation +{ +} + +/* Footer */ +.footer +{ + font-size: 0.7em; +} + +.footer a +{ + margin-right: 10px; +} + +/* Horizontal Menu */ +.tab-menu +{ + margin: 0px; + padding: 0px; + position: relative; + list-style-type: none; + background-color: #5b86ea; + width: 100%; +} + +/* This is used by all browsers */ +.tab-menu .tab +{ + display: inline; + margin: 0px; + padding-left: 3px; + padding-right: 3px; + font-size: 0.7em; +} + +/* Good browsers use this too (IE doesn't use this) */ +.tab-menu .tab +{ + display: table-cell; +} + +.tab:active +{ + background-color: #6f95ec; +} + +.tab:hover +{ + background-color: #e2eafb; +} diff --git a/templates/xml/content-addform-thanks.html b/templates/xml/content-addform-thanks.html new file mode 100755 index 0000000..ba95e12 --- /dev/null +++ b/templates/xml/content-addform-thanks.html @@ -0,0 +1 @@ + diff --git a/templates/xml/content-error.html b/templates/xml/content-error.html new file mode 100755 index 0000000..15cf757 --- /dev/null +++ b/templates/xml/content-error.html @@ -0,0 +1,3 @@ + +${ERROR_MESSAGE} + diff --git a/templates/xml/content-show-kwote.html b/templates/xml/content-show-kwote.html new file mode 100755 index 0000000..8a67e5d --- /dev/null +++ b/templates/xml/content-show-kwote.html @@ -0,0 +1,3 @@ + + ${KWOTE_TEXT_XML} + diff --git a/templates/xml/footer.html b/templates/xml/footer.html new file mode 100755 index 0000000..c87ed0f --- /dev/null +++ b/templates/xml/footer.html @@ -0,0 +1,5 @@ + + + + + diff --git a/templates/xml/header.html b/templates/xml/header.html new file mode 100755 index 0000000..d31993f --- /dev/null +++ b/templates/xml/header.html @@ -0,0 +1,9 @@ + + + + ${SITE_NAME} + ${TAG_LINE} + ${KWOTE_COUNT} + ${KWOTE_BACKUP_COUNT} + +