1
0
Fork 0

Compare commits

...
This repository has been archived on 2020-11-09. You can view files and clone it, but cannot push or open issues or pull requests.

10 Commits

6 changed files with 402 additions and 854 deletions

View File

@ -1,4 +1,4 @@
# Fancy-GMS
# Not-Fancy-GMS
Iteration of the 'Fancy 1.1' [Vanilla Forums](https://github.com/vanilla) theme, for use on forums.gamemaking.social.
@ -8,17 +8,17 @@ The creator's website is inactive.
## Changes
- Tidied CSS: easier to read (for me) (very WIP).
- Tidied CSS: easier to read (for me) (WIP).
- Changed colours, size, and some padding.
- Hid 'Gender' question+indicator.
- Hid 'Gender' question+indicator >:|
- increased size of post reply text box, made it resizable, and added border to make it clearer.
- Simplified borders and made individual posts most distinct.
- Simplified borders and made individual posts more distinct.
- Coloured post author details.
- Changed footer.
- Redone `views/default.master.tpl` to be less DIVy. Uses nice semantic layout now.
- . . .
## To-do list
- Keep reorganising `design/custom.css` file
- Redo `views/default.master.tpl` to be less DIVy
- Work on side panel

View File

@ -1,11 +1,11 @@
<?php if (!defined('APPLICATION')) exit();
$ThemeInfo['Fancy-GMT'] = array(
'Name' => 'Fancy-GMS',
$ThemeInfo['Not-Fancy-GMS'] = array(
'Name' => 'Not-Fancy-GMS',
'Description' => "Modified version of 'Vanilla Forums Responsive Template by Hoangsoft.com'",
'Version' => '1.0 (based on Fancy version 1.1)',
'Version' => '1.2',
'Author' => "Rylie James Thomas (original by Hoangsoft.com)",
'License'=>"GNU GPL2",
'AuthorEmail' => 'contact@ryliejamesthomas.net',
'AuthorUrl' => 'https://www.ryliejamesthomas.net'
'AuthorUrl' => 'http://www.ryliejamesthomas.net'
);

File diff suppressed because it is too large Load Diff

BIN
design/new.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

View File

@ -1,14 +0,0 @@
jQuery(document).ready(function($){
//open the lateral panel
$('.cd-btn').on('click', function(event){
event.preventDefault();
$('.cd-panel').addClass('is-visible');
});
//clode the lateral panel
$('.cd-panel').on('click', function(event){
if( $(event.target).is('.cd-panel') || $(event.target).is('.cd-close') ) {
$('.cd-panel').removeClass('is-visible');
event.preventDefault();
}
});
});

View File

@ -1,78 +1,40 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
{asset name='Head'}
<script src="/themes/Fancy/design/slidepanel.js" type="text/javascript"></script>
</head>
<body id="{$BodyID}" class="{$BodyClass}">
<div id="Frame">
<div id="Head">
<div class="Row">
<ul class="fl SiteMenu HiddenOnDesktop">
{home_link}
</ul>
<ul class="fl SiteMenu HiddenOnMobile">
{home_link}
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
{asset name='Head'}
</head>
<body id="{$BodyID}" class="{$BodyClass}">
<header>
{logo}
<h1>Game Making Social Forums.</h1>
<nav>
<ul> <!-- <li></li> inserted by Vanilla -->
{activity_link}
{discussions_link}
</ul>
<strong class="SiteTitle"><a href="{link path="/"}">{logo}</a></strong>
<ul class="fr SiteMenu HiddenOnDesktop">
<li><a href="#0" class="cd-btn">Menu</a></li>
</ul>
<ul class="fr SiteMenu HiddenOnMobile">
{dashboard_link}
{inbox_link}
{profile_link}
{signinout_link}
</ul>
</div>
</div>
<div id="Body">
<div class="clear"></div>
<ul class="SiteMenu">
{custom_menu}
</ul>
<div class="Row">
<div class="BreadcrumbsWrapper P">
{breadcrumbs}
</div>
<div class="Column PanelColumn" id="Panel">
<div class="SiteSearch">{searchbox}</div>
{asset name="Panel"}
</div>
<div class="Column ContentColumn" id="Content">{asset name="Content"}</div>
</div>
</div>
<div id="Foot">
<div class="Row">
<p><a href="https://gamemaking.social/">gamemaking.social</a> | <a href="https://gamemaking.tools/">gamemaking.tools</a><br>
<a href="https://github.com/ryliejamesthomas/vanilla-theme-fancy-gms">Theme info on Github.</a></p>
{asset name="Foot"}
</div>
</div>
</div>
{event name="AfterBody"}
<div class="cd-panel from-right">
<header class="cd-panel-header">
<strong class="SiteTitle"><a href="{link path="/"}">{logo}</a></strong>
<a href="#0" class="cd-panel-close cd-close"><span class="cd-close">Close</span></a>
</nav>
</header>
<div class="cd-panel-container">
<div class="cd-panel-content">
<ul class="FilterMenu">
{activity_link}
{discussions_link}
{dashboard_link}
{inbox_link}
{profile_link}
{signinout_link}
</ul>
{asset name="Panel"}
<main>
<nav>
<p>Path: {breadcrumbs}</p>
</nav>
{asset name="Content"}
</main>
<aside>
{searchbox}
{asset name="Panel"}
</aside>
<footer>
<ul>
<li><a href="https://gamemaking.social/">gamemaking.social</a></li>
<li><a href="https://gamemaking.tools/">gamemaking.tools</a></li>
<li><a href="https://github.com/ryliejamesthomas/vanilla-theme-fancy-gms">Theme repo on Github</a></li>
</div>
</div>
</div>
</body>
</footer>
</body>
</html>