From 427a71155ebd6caf2944ba7db72c89881a7cef8a Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 14 Jul 2002 14:53:45 +0000 Subject: [PATCH] Name change to .html from .tpl as per requests (to ease local editing ... for those who can't search for .tpl ... ;) ), various updates to account for conditionals in templating engine, etc. git-svn-id: file:///svn/phpbb/trunk@2676 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/templates/subSilver/agreement.html | 19 + phpBB/templates/subSilver/bbcode.html | 60 +++ phpBB/templates/subSilver/confirm_body.html | 17 + phpBB/templates/subSilver/error_body.html | 18 + phpBB/templates/subSilver/faq_body.html | 55 +++ phpBB/templates/subSilver/index_body.html | 94 ++++ phpBB/templates/subSilver/jumpbox.html | 6 + phpBB/templates/subSilver/login_body.html | 47 ++ .../templates/subSilver/memberlist_body.html | 61 +++ phpBB/templates/subSilver/message_body.html | 30 ++ phpBB/templates/subSilver/overall_footer.html | 19 + phpBB/templates/subSilver/overall_header.html | 51 ++ phpBB/templates/subSilver/posting_body.html | 452 ++++++++++++++++++ .../subSilver/posting_poll_body.html | 31 ++ .../templates/subSilver/posting_preview.html | 23 + .../templates/subSilver/posting_smilies.html | 45 ++ .../subSilver/posting_topic_review.html | 39 ++ .../templates/subSilver/profile_add_body.html | 259 ++++++++++ .../subSilver/profile_view_body.html | 94 ++++ phpBB/templates/subSilver/search_body.html | 60 +++ .../templates/subSilver/search_username.html | 33 ++ phpBB/templates/subSilver/simple_footer.html | 19 + phpBB/templates/subSilver/simple_header.html | 24 + phpBB/templates/subSilver/subSilver.css | 19 +- phpBB/templates/subSilver/viewforum_body.html | 105 ++++ .../templates/subSilver/viewonline_body.html | 63 +++ phpBB/templates/subSilver/viewtopic_body.html | 148 ++++++ 27 files changed, 1885 insertions(+), 6 deletions(-) create mode 100644 phpBB/templates/subSilver/agreement.html create mode 100644 phpBB/templates/subSilver/bbcode.html create mode 100644 phpBB/templates/subSilver/confirm_body.html create mode 100644 phpBB/templates/subSilver/error_body.html create mode 100644 phpBB/templates/subSilver/faq_body.html create mode 100644 phpBB/templates/subSilver/index_body.html create mode 100644 phpBB/templates/subSilver/jumpbox.html create mode 100644 phpBB/templates/subSilver/login_body.html create mode 100644 phpBB/templates/subSilver/memberlist_body.html create mode 100644 phpBB/templates/subSilver/message_body.html create mode 100644 phpBB/templates/subSilver/overall_footer.html create mode 100644 phpBB/templates/subSilver/overall_header.html create mode 100644 phpBB/templates/subSilver/posting_body.html create mode 100644 phpBB/templates/subSilver/posting_poll_body.html create mode 100644 phpBB/templates/subSilver/posting_preview.html create mode 100644 phpBB/templates/subSilver/posting_smilies.html create mode 100644 phpBB/templates/subSilver/posting_topic_review.html create mode 100644 phpBB/templates/subSilver/profile_add_body.html create mode 100644 phpBB/templates/subSilver/profile_view_body.html create mode 100644 phpBB/templates/subSilver/search_body.html create mode 100644 phpBB/templates/subSilver/search_username.html create mode 100644 phpBB/templates/subSilver/simple_footer.html create mode 100644 phpBB/templates/subSilver/simple_header.html create mode 100644 phpBB/templates/subSilver/viewforum_body.html create mode 100644 phpBB/templates/subSilver/viewonline_body.html create mode 100644 phpBB/templates/subSilver/viewtopic_body.html diff --git a/phpBB/templates/subSilver/agreement.html b/phpBB/templates/subSilver/agreement.html new file mode 100644 index 0000000000..6c1e9ed434 --- /dev/null +++ b/phpBB/templates/subSilver/agreement.html @@ -0,0 +1,19 @@ + + + + + +
{L_INDEX}
+ + + + + + + + +
{SITENAME} - {REGISTRATION}
+ + + +

{AGREEMENT}



diff --git a/phpBB/templates/subSilver/bbcode.html b/phpBB/templates/subSilver/bbcode.html new file mode 100644 index 0000000000..caef76b99e --- /dev/null +++ b/phpBB/templates/subSilver/bbcode.html @@ -0,0 +1,60 @@ + + +
    +
+ +
  • + + + + + + + + + +
    {USERNAME} {L_WROTE}:
    + + + + + + + + +
    {L_QUOTE}:
    +
    + + + + + + + + + + +
    {L_CODE}:
    +
    + + + + + + + + + + + + + + + + + + + + +{DESCRIPTION} + +{EMAIL} diff --git a/phpBB/templates/subSilver/confirm_body.html b/phpBB/templates/subSilver/confirm_body.html new file mode 100644 index 0000000000..f79a6438de --- /dev/null +++ b/phpBB/templates/subSilver/confirm_body.html @@ -0,0 +1,17 @@ + + + + + +
    + + + + + + + + +
    {MESSAGE_TITLE}

    {MESSAGE_TEXT}

    {S_HIDDEN_FIELDS}  
    + +
    diff --git a/phpBB/templates/subSilver/error_body.html b/phpBB/templates/subSilver/error_body.html new file mode 100644 index 0000000000..dd71af8518 --- /dev/null +++ b/phpBB/templates/subSilver/error_body.html @@ -0,0 +1,18 @@ + + + + + +
    + + + + + + + + + +
     
    {ERROR_MESSAGE}
     
    + +
    diff --git a/phpBB/templates/subSilver/faq_body.html b/phpBB/templates/subSilver/faq_body.html new file mode 100644 index 0000000000..d5ad01f676 --- /dev/null +++ b/phpBB/templates/subSilver/faq_body.html @@ -0,0 +1,55 @@ + + + + + + +
    + + + + + + + + + + + +
    {L_FAQ_TITLE}
    + + {faq_block_link.BLOCK_TITLE}
    + + {faq_block_link.faq_row_link.FAQ_LINK}
    + +
    + +
     
    + +
    + + + + + + + + + + + + + + +
    {faq_block.BLOCK_TITLE}
    {faq_block.faq_row.FAQ_QUESTION}
    {faq_block.faq_row.FAQ_ANSWER}
    {L_BACK_TO_TOP}
    + +
    + + + + + + +
    {S_TIMEZONE}

    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/index_body.html b/phpBB/templates/subSilver/index_body.html new file mode 100644 index 0000000000..56fe107749 --- /dev/null +++ b/phpBB/templates/subSilver/index_body.html @@ -0,0 +1,94 @@ + + + + + + +
    + + + + +

    {TOTAL_POSTS}
    {TOTAL_USERS}
    {NEWEST_USER}

    {L_INDEX}
    {L_SEARCH_NEW}
    {L_SEARCH_SELF}
    {L_SEARCH_UNANSWERED}

    {LAST_VISIT_DATE}
    {CURRENT_TIME}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FORUM}  {L_TOPICS}  {L_POSTS}  {L_LASTPOST} 
    {catrow.CAT_DESC} 
    {catrow.forumrow.FORUM_FOLDER_IMG}{catrow.forumrow.FORUM_NAME}
    {catrow.forumrow.FORUM_DESC}
    {catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}
    {catrow.forumrow.TOPICS}{catrow.forumrow.POSTS} {catrow.forumrow.LAST_POST}
    {L_NO_FORUMS}
    + + + + + + +
    {L_MARK_FORUMS_READ}{S_TIMEZONE}
    + +
    + + + + + + + + + +
    {L_WHO_IS_ONLINE}
    {L_WHO_IS_ONLINE}{TOTAL_USERS_ONLINE}
    {RECORD_USERS}
    {LOGGED_IN_USER_LIST}
    + + + + + +
    {L_ONLINE_EXPLAIN}
    + + +
    + + + + + + +
    {L_LOGIN_LOGOUT}
    {L_USERNAME}: +    {L_PASSWORD}:     {L_AUTO_LOGIN}    
    + + +
    + + + + + + + + + + + + +
    {FORUM_NEW_IMG}{L_NEW_POSTS}  {FORUM_IMG}{L_NO_NEW_POSTS}  {FORUM_LOCKED_IMG}{L_FORUM_LOCKED}
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/jumpbox.html b/phpBB/templates/subSilver/jumpbox.html new file mode 100644 index 0000000000..2000e92056 --- /dev/null +++ b/phpBB/templates/subSilver/jumpbox.html @@ -0,0 +1,6 @@ + +
    + + + +
    {L_JUMP_TO}: {S_JUMPBOX_SELECT} 
    diff --git a/phpBB/templates/subSilver/login_body.html b/phpBB/templates/subSilver/login_body.html new file mode 100644 index 0000000000..c11cdd98f3 --- /dev/null +++ b/phpBB/templates/subSilver/login_body.html @@ -0,0 +1,47 @@ + + +
    + + + + + +
    + + + + + + + + +
    {L_ENTER_PASSWORD}
    + + + + + + + + + + + + + + + + + + + + +
     
    {L_USERNAME}: + +
    {L_PASSWORD}: + +
    {L_AUTO_LOGIN}:
    {S_HIDDEN_FIELDS}
    {L_SEND_PASSWORD}
    + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/memberlist_body.html b/phpBB/templates/subSilver/memberlist_body.html new file mode 100644 index 0000000000..999bcf2dd2 --- /dev/null +++ b/phpBB/templates/subSilver/memberlist_body.html @@ -0,0 +1,61 @@ + + +
    + + + + +
    {L_INDEX}{L_SELECT_SORT_METHOD}: {S_MODE_SELECT}  {L_ORDER} {S_ORDER_SELECT} 
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    # {L_USERNAME}{L_EMAIL}{L_FROM}{L_JOINED}{L_POSTS}{L_WEBSITE}
     {memberrow.ROW_NUMBER}  {memberrow.PM_IMG} {memberrow.USERNAME} {memberrow.EMAIL_IMG} {memberrow.FROM}{memberrow.JOINED}{memberrow.POSTS} {memberrow.WWW_IMG} 
     
    + + + + + +
    + + + + + + +
    {PAGE_NUMBER}{S_TIMEZONE}
    {PAGINATION}
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/message_body.html b/phpBB/templates/subSilver/message_body.html new file mode 100644 index 0000000000..c9738870c3 --- /dev/null +++ b/phpBB/templates/subSilver/message_body.html @@ -0,0 +1,30 @@ + + + + + + +
    + + + + + + + + +
    {MESSAGE_TITLE}
    + + + + + + + + + +
     
    {MESSAGE_TEXT}
     
    + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/overall_footer.html b/phpBB/templates/subSilver/overall_footer.html new file mode 100644 index 0000000000..326b38d3af --- /dev/null +++ b/phpBB/templates/subSilver/overall_footer.html @@ -0,0 +1,19 @@ + +

    {ADMIN_LINK}
    + +Powered by phpBB {PHPBB_VERSION} © 2001 phpBB Group
    {TRANSLATION_INFO}{DEBUG_OUTPUT}
    +
    + + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/overall_header.html b/phpBB/templates/subSilver/overall_header.html new file mode 100644 index 0000000000..62220409c2 --- /dev/null +++ b/phpBB/templates/subSilver/overall_header.html @@ -0,0 +1,51 @@ + + + + + +{META} +{NAV_LINKS} +{SITENAME} :: {PAGE_TITLE} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/phpBB/templates/subSilver/posting_preview.html b/phpBB/templates/subSilver/posting_preview.html new file mode 100644 index 0000000000..8da3409dcd --- /dev/null +++ b/phpBB/templates/subSilver/posting_preview.html @@ -0,0 +1,23 @@ + +
    + + + + +
    {L_INDEX}{SITENAME}
    {SITE_DESCRIPTION}
     
    + + + + + + + +
     {L_FAQ}{L_FAQ}   {L_SEARCH}{L_SEARCH}   {L_MEMBERLIST}{L_MEMBERLIST}   {L_USERGROUPS}{L_USERGROUPS}  + +  {L_REGISTER}{L_REGISTER}  + +
     {L_PROFILE}{L_PROFILE}   {PRIVATE_MESSAGE_INFO}{PRIVATE_MESSAGE_INFO}   {L_LOGIN_LOGOUT}{L_LOGIN_LOGOUT} 
    + +
    diff --git a/phpBB/templates/subSilver/posting_body.html b/phpBB/templates/subSilver/posting_body.html new file mode 100644 index 0000000000..6def5da874 --- /dev/null +++ b/phpBB/templates/subSilver/posting_body.html @@ -0,0 +1,452 @@ + + + + + + + + + +
    + + + + + + + + + + + +
    {INBOX_IMG}{INBOX_LINK}  {SENTBOX_IMG}{SENTBOX_LINK}  {OUTBOX_IMG}{OUTBOX_LINK}  {SAVEBOX_IMG}{SAVEBOX_LINK}  
    +
    + +
    + + +
    + +{POST_PREVIEW_BOX} +{ERROR_BOX} + + + + + + +
    {L_INDEX} + + -> {FORUM_NAME}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {POLLBOX} + + + +
    {L_POST_A}
    {L_USERNAME}
    {L_USERNAME} 
    {L_SUBJECT} + +
    + + + + + + + +
    {L_MESSAGE_BODY}

    + + + + + + + + + + + + + + + + +
    {L_EMOTICONS}
    {smilies_row.smilies_col.SMILEY_DESC}
    {L_MORE_SMILIES}
    +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + +
    + + + + + +
     {L_FONT_COLOR}: +  {L_FONT_SIZE}: + {L_BBCODE_CLOSE_TAGS}
    +
    + +
    + +
    +
    {L_OPTIONS}
    {HTML_STATUS}
    {BBCODE_STATUS}
    {SMILIES_STATUS}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + {L_DISABLE_HTML}
    + + {L_DISABLE_BBCODE}
    + + {L_DISABLE_SMILIES}
    + + {L_ATTACH_SIGNATURE}
    + + {L_NOTIFY_ON_REPLY}
    + + {L_DELETE_POST}
    {S_TYPE_TOGGLE}
    +
    {S_HIDDEN_FORM_FIELDS} 
    + + + + + +
    {S_TIMEZONE}
    +
    + + + + + +
    + +{TOPIC_REVIEW_BOX} + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/posting_poll_body.html b/phpBB/templates/subSilver/posting_poll_body.html new file mode 100644 index 0000000000..4391393208 --- /dev/null +++ b/phpBB/templates/subSilver/posting_poll_body.html @@ -0,0 +1,31 @@ + +
    {L_ADD_A_POLL}
    {L_ADD_POLL_EXPLAIN}
    {L_POLL_QUESTION}
    {L_POLL_OPTION}  
    {L_POLL_OPTION}  
    {L_POLL_LENGTH} {L_DAYS}   {L_POLL_LENGTH_EXPLAIN}
    {L_POLL_DELETE}
    + + + + + + + + + + + + +
    {L_PREVIEW}
    {L_POST}{L_POSTED}: {POST_DATE}     {L_POST_SUBJECT}: {POST_SUBJECT}
    + + + +
    + {MESSAGE} +
    + +
    diff --git a/phpBB/templates/subSilver/posting_smilies.html b/phpBB/templates/subSilver/posting_smilies.html new file mode 100644 index 0000000000..7028535c49 --- /dev/null +++ b/phpBB/templates/subSilver/posting_smilies.html @@ -0,0 +1,45 @@ + + + + + + + +
    + + + + + + + + + +
    {L_EMOTICONS}
    + + + + + + + + + + + + +
    {smilies_row.smilies_col.SMILEY_DESC}
    {L_MORE_SMILIES}

    {L_CLOSE_WINDOW}
    diff --git a/phpBB/templates/subSilver/posting_topic_review.html b/phpBB/templates/subSilver/posting_topic_review.html new file mode 100644 index 0000000000..7b8960c0fa --- /dev/null +++ b/phpBB/templates/subSilver/posting_topic_review.html @@ -0,0 +1,39 @@ + + + + + + + + + +
    {L_TOPIC_REVIEW}
    + diff --git a/phpBB/templates/subSilver/profile_add_body.html b/phpBB/templates/subSilver/profile_add_body.html new file mode 100644 index 0000000000..3ce79b087a --- /dev/null +++ b/phpBB/templates/subSilver/profile_add_body.html @@ -0,0 +1,259 @@ + + +
    + +{ERROR_BOX} + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_REGISTRATION_INFO}
    {L_ITEMS_REQUIRED}
    {L_USERNAME}: *
    {L_EMAIL_ADDRESS}: *
    {L_CURRENT_PASSWORD}: *
    + {L_CONFIRM_PASSWORD_EXPLAIN}
    + +
    {L_NEW_PASSWORD}: *
    + {L_PASSWORD_IF_CHANGED}
    + +
    {L_CONFIRM_PASSWORD}: *
    + {L_PASSWORD_CONFIRM_IF_CHANGED}
    + +
     
    {L_PROFILE_INFO}
    {L_PROFILE_INFO_NOTICE}
    {L_ICQ_NUMBER}: + +
    {L_AIM}: + +
    {L_MESSENGER}: + +
    {L_YAHOO}: + +
    {L_WEBSITE}: + +
    {L_LOCATION}: + +
    {L_OCCUPATION}: + +
    {L_INTERESTS}: + +
    {L_SIGNATURE}:
    {L_SIGNATURE_EXPLAIN}

    {HTML_STATUS}
    {BBCODE_STATUS}
    {SMILIES_STATUS}
    + +
     
    {L_PREFERENCES}
    {L_PUBLIC_VIEW_EMAIL}: + + {L_YES}   + + {L_NO}
    {L_HIDE_USER}: + + {L_YES}   + + {L_NO}
    {L_NOTIFY_ON_REPLY}:
    + {L_NOTIFY_ON_REPLY_EXPLAIN}
    + + {L_YES}   + + {L_NO}
    {L_NOTIFY_ON_PRIVMSG}: + + {L_YES}   + + {L_NO}
    {L_POPUP_ON_PRIVMSG}:
    {L_POPUP_ON_PRIVMSG_EXPLAIN}
    + + {L_YES}   + + {L_NO}
    {L_ALWAYS_ADD_SIGNATURE}: + + {L_YES}   + + {L_NO}
    {L_ALWAYS_ALLOW_BBCODE}: + + {L_YES}   + + {L_NO}
    {L_ALWAYS_ALLOW_HTML}: + + {L_YES}   + + {L_NO}
    {L_ALWAYS_ALLOW_SMILIES}: + + {L_YES}   + + {L_NO}
    {L_BOARD_LANGUAGE}:{LANGUAGE_SELECT}
    {L_BOARD_STYLE}:{STYLE_SELECT}
    {L_TIMEZONE}:{TIMEZONE_SELECT}
    {L_DATE_FORMAT}:
    + {L_DATE_FORMAT_EXPLAIN}
    + +
     
    {L_AVATAR_PANEL}
    + + + + +
    {L_AVATAR_EXPLAIN}{L_CURRENT_IMAGE}
    {AVATAR}
     {L_DELETE_AVATAR}
    {L_UPLOAD_AVATAR_FILE}:
    {L_UPLOAD_AVATAR_URL}:
    {L_UPLOAD_AVATAR_URL_EXPLAIN}
    {L_LINK_REMOTE_AVATAR}:
    {L_LINK_REMOTE_AVATAR_EXPLAIN}
    {L_AVATAR_GALLERY}:
    {S_HIDDEN_FIELDS}  
    + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/profile_view_body.html b/phpBB/templates/subSilver/profile_view_body.html new file mode 100644 index 0000000000..39fa30291e --- /dev/null +++ b/phpBB/templates/subSilver/profile_view_body.html @@ -0,0 +1,94 @@ + + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + +
    {L_VIEWING_PROFILE}
    {L_AVATAR}{L_ABOUT_USER}
    {AVATAR_IMG}
    {POSTER_RANK}
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_JOINED}: {JOINED}
    {L_TOTAL_POSTS}: {POSTS}
    [{POST_PERCENT_STATS} / {POST_DAY_STATS}]
    {L_SEARCH_USER_POSTS}
    {L_LOCATION}: {LOCATION}
    {L_WEBSITE}: {WWW}
    {L_OCCUPATION}: {OCCUPATION}
    {L_INTERESTS}: {INTERESTS}
    +
    {L_CONTACT} {USERNAME}
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_EMAIL_ADDRESS}:{EMAIL_IMG}
    {L_PM}:{PM_IMG}
    {L_MESSENGER}:{MSN}
    {L_YAHOO}:{YIM_IMG}
    {L_AIM}:{AIM_IMG}
    {L_ICQ_NUMBER}:
    +
    + + + + + +

    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/search_body.html b/phpBB/templates/subSilver/search_body.html new file mode 100644 index 0000000000..bf40fcd75a --- /dev/null +++ b/phpBB/templates/subSilver/search_body.html @@ -0,0 +1,60 @@ + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_SEARCH_QUERY}
    {L_SEARCH_KEYWORDS}:
    {L_SEARCH_KEYWORDS_EXPLAIN}

    {L_SEARCH_ANY_TERMS}
    {L_SEARCH_ALL_TERMS}
    {L_SEARCH_AUTHOR}:
    {L_SEARCH_AUTHOR_EXPLAIN}
    {L_SEARCH_OPTIONS}
    {L_FORUM}: {L_SEARCH_PREVIOUS}: 
    {L_SEARCH_MESSAGE_TITLE}
    {L_SEARCH_MESSAGE_ONLY}
    {L_CATEGORY}: {L_SORT_BY}: 
    {L_SORT_ASCENDING}
    {L_SORT_DESCENDING}
     
    {L_DISPLAY_RESULTS}: {L_POSTS}{L_TOPICS}{L_RETURN_FIRST} {L_CHARACTERS}
    {S_HIDDEN_FIELDS}
    + + + + + +
    {S_TIMEZONE}
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/search_username.html b/phpBB/templates/subSilver/search_username.html new file mode 100644 index 0000000000..a113c30f01 --- /dev/null +++ b/phpBB/templates/subSilver/search_username.html @@ -0,0 +1,33 @@ + + + + +
    + + + + +
    + + + + + + +
    {L_SEARCH_USERNAME}

     

    {L_SEARCH_EXPLAIN}
    + + {L_UPDATE_USERNAME}
     

    + +
    {L_CLOSE_WINDOW}
    +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/simple_footer.html b/phpBB/templates/subSilver/simple_footer.html new file mode 100644 index 0000000000..d58334b499 --- /dev/null +++ b/phpBB/templates/subSilver/simple_footer.html @@ -0,0 +1,19 @@ + +

    + +Powered by phpBB {PHPBB_VERSION} © 2001 phpBB Group
    + + + + + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/simple_header.html b/phpBB/templates/subSilver/simple_header.html new file mode 100644 index 0000000000..cef378af7e --- /dev/null +++ b/phpBB/templates/subSilver/simple_header.html @@ -0,0 +1,24 @@ + + + + + + + + +{META} +{SITENAME} :: {PAGE_TITLE} + + + + + + diff --git a/phpBB/templates/subSilver/subSilver.css b/phpBB/templates/subSilver/subSilver.css index ba58268159..125a72bec2 100644 --- a/phpBB/templates/subSilver/subSilver.css +++ b/phpBB/templates/subSilver/subSilver.css @@ -23,6 +23,7 @@ a:link,a:active,a:visited { color : #006699; } a:hover { text-decoration: underline; color : #DD6900; } hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;} +p {font-size:10pt;} /* This is the border line & background colour round the entire page */ .bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; } @@ -32,9 +33,9 @@ hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;} /* Main table cell colours and backgrounds */ -td.row1 { background-color: #EFEFEF; } -td.row2 { background-color: #DEE3E7; } -td.row3 { background-color: #D1D7DC; } +.row1 { background-color: #EFEFEF; } +.row2 { background-color: #DEE3E7; } +.row3 { background-color: #D1D7DC; } /* @@ -44,7 +45,7 @@ td.row3 { background-color: #D1D7DC; } */ td.rowpic { background-color: #FFFFFF; - background-image: url(images/cellpic2.jpg); + background-image: url(templates/subSilver/images/cellpic2.jpg); background-repeat: repeat-y; } @@ -52,11 +53,11 @@ td.rowpic { th { color: #FFA34F; font-size: 11px; font-weight : bold; background-color: #006699; height: 25px; - background-image: url(images/cellpic3.gif); + background-image: url(templates/subSilver/images/cellpic3.gif); } td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom { - background-image: url(images/cellpic1.gif); + background-image: url(templates/subSilver/images/cellpic1.gif); background-color:#D1D7DC; border: #FFFFFF; border-style: solid; height: 28px; } @@ -91,6 +92,12 @@ th.thCornerR { border-width: 1px 1px 0px 0px; } text-decoration: none; line-height : 120%; color : #000000; } +h3 { + font-family: Verdana,serif; + font-weight: bold; + font-size: 12pt; + line-height: 120%; +} /* General text */ .gen { font-size : 12px; } diff --git a/phpBB/templates/subSilver/viewforum_body.html b/phpBB/templates/subSilver/viewforum_body.html new file mode 100644 index 0000000000..81c98ae8b7 --- /dev/null +++ b/phpBB/templates/subSilver/viewforum_body.html @@ -0,0 +1,105 @@ + + + + + + +
    + + + + + + + + + +
    {FORUM_NAME}
    [ {L_VIEW_MODERATORS} ]

    {LOGGED_IN_USER_LIST}
    {PAGINATION}
    {POST_IMG}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_TOPICS}  {L_AUTHOR}  {L_REPLIES}  {L_VIEWS}  {L_LASTPOST} Rating
    {topicrow.TOPIC_FOLDER_IMG}{topicrow.TOPIC_ICON}{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}{topicrow.TOPIC_TITLE}
    {topicrow.GOTO_PAGE}
    {topicrow.TOPIC_AUTHOR}{topicrow.REPLIES}{topicrow.VIEWS}{topicrow.LAST_POST_TIME}
    {topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}
    {topicrow.TOPIC_RATING}
    {L_NO_TOPICS}
    {L_DISPLAY_TOPICS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    + + + + + + + + + + + + + +
    {POST_IMG}   {L_INDEX} -> {FORUM_NAME}{S_TIMEZONE}
    {PAGINATION}
    {PAGE_NUMBER}
    {S_WATCH_FORUM}
    +
    + + + + + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {FOLDER_NEW_IMG}{L_NEW_POSTS}  {FOLDER_IMG}{L_NO_NEW_POSTS}  {FOLDER_ANNOUNCE_IMG}{L_ANNOUNCEMENT}
    {FOLDER_HOT_NEW_IMG}{L_NEW_POSTS_HOT}  {FOLDER_HOT_IMG}{L_NO_NEW_POSTS_HOT}  {FOLDER_STICKY_IMG}{L_STICKY}
    {FOLDER_LOCKED_NEW_IMG}{L_NEW_POSTS_LOCKED}  {FOLDER_LOCKED_IMG}{L_NO_NEW_POSTS_LOCKED}
    {S_AUTH_LIST}
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/viewonline_body.html b/phpBB/templates/subSilver/viewonline_body.html new file mode 100644 index 0000000000..9dcd5a8089 --- /dev/null +++ b/phpBB/templates/subSilver/viewonline_body.html @@ -0,0 +1,63 @@ + + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_USERNAME}  {L_LAST_UPDATE}  {L_FORUM_LOCATION} 
    {TOTAL_REGISTERED_USERS_ONLINE}
     {reg_user_row.USERNAME}  {reg_user_row.LASTUPDATE}  {reg_user_row.FORUM_LOCATION} 
    .
    {TOTAL_GUEST_USERS_ONLINE}
     {guest_user_row.USERNAME}  {guest_user_row.LASTUPDATE}  {guest_user_row.FORUM_LOCATION} 
    + + + + + + +
    {L_ONLINE_EXPLAIN}{S_TIMEZONE}
    + +
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/templates/subSilver/viewtopic_body.html b/phpBB/templates/subSilver/viewtopic_body.html new file mode 100644 index 0000000000..cf613db1de --- /dev/null +++ b/phpBB/templates/subSilver/viewtopic_body.html @@ -0,0 +1,148 @@ + + + + + + +
    {TOPIC_TITLE}
    + + + + + + +
    {POST_IMG}   {REPLY_IMG}   {L_INDEX} -> {FORUM_NAME}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_VIEW_PREVIOUS_TOPIC} :: {L_VIEW_NEXT_TOPIC} 

    + + + + + + + + + + + + +
    {POLL_QUESTION}
    + + + + + + +
     {poll_option.POLL_OPTION_CAPTION}
    {L_VIEW_RESULTS}
    {S_HIDDEN_FIELDS}

    + + + + + + + + + +
    {POLL_QUESTION}
    + + + + + + + + +
    {poll_option.POLL_OPTION_CAPTION} + + + + + +
    {poll_option.POLL_OPTION_PERCENT}
     {poll_option.POLL_OPTION_PERCENT} [ {poll_option.POLL_OPTION_RESULT} ]
    {L_TOTAL_VOTES} : {TOTAL_VOTES}

    {L_AUTHOR}{L_MESSAGE}
    {postrow.POSTER_NAME}
    {postrow.POSTER_RANK}
    {postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}

    {postrow.POSTER_JOINED}
    {postrow.POSTER_POSTS}
    {postrow.POSTER_FROM}

    + + + + + + + + + + +
    {postrow.MINI_POST_IMG}{L_POSTED}: {postrow.POST_DATE}    {L_POST_SUBJECT}: {postrow.POST_SUBJECT}{postrow.QUOTE_IMG} {postrow.EDIT_IMG} {postrow.DELETE_IMG} {postrow.IP_IMG}

    {postrow.MESSAGE}{postrow.SIGNATURE}{postrow.EDITED_MESSAGE}
    {L_BACK_TO_TOP} + + + +
    {postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}
    + + + +
    {L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    + + + + + + + + + + +
    {POST_IMG}   {REPLY_IMG}   {L_INDEX} -> {FORUM_NAME}{S_TIMEZONE}
    {PAGINATION}
    {PAGE_NUMBER}
    + + + + + + +
    {S_WATCH_TOPIC}
    {L_RATE_TOPIC}: {S_SELECT_RATING} 
     
    {S_TOPIC_ADMIN}
    {S_AUTH_LIST}
    + + \ No newline at end of file