From 962ac91ac4f57599939416e46565fbe2e5912450 Mon Sep 17 00:00:00 2001 From: Brandon Giesing Date: Thu, 16 Jul 2015 20:39:18 +0000 Subject: [PATCH] Material Redesign! --- README.md | 125 ------------ config.json | 1 - index.html | 293 ++++++++++----------------- index.md | 18 -- logo.svg | 4 + navigation.md | 23 --- pages/blog.md | 1 - pages/uploads/documents/.gitkeep | 0 pages/uploads/images/.gitkeep | 0 pages/uploads/movies/.gitkeep | 0 pages/uploads/music/.gitkeep | 0 pages/uploads/pdf/.gitkeep | 0 pages/uploads/presentations/.gitkeep | 0 style.css | 24 +++ 14 files changed, 133 insertions(+), 356 deletions(-) delete mode 100644 README.md delete mode 100644 config.json delete mode 100644 index.md create mode 100644 logo.svg delete mode 100644 navigation.md delete mode 100644 pages/blog.md delete mode 100644 pages/uploads/documents/.gitkeep delete mode 100644 pages/uploads/images/.gitkeep delete mode 100644 pages/uploads/movies/.gitkeep delete mode 100644 pages/uploads/music/.gitkeep delete mode 100644 pages/uploads/pdf/.gitkeep delete mode 100644 pages/uploads/presentations/.gitkeep create mode 100644 style.css diff --git a/README.md b/README.md deleted file mode 100644 index 993be77..0000000 --- a/README.md +++ /dev/null @@ -1,125 +0,0 @@ -README -====== - -First things first ------------------- - -Learn [Markdown](https://help.github.com/articles/github-flavored-markdown)! Then check out MDwiki's [quick start](http://dynalon.github.io/mdwiki/#!quickstart.md). - -Whenever you feel stuck, go to [MDwiki's own site](http://mdwiki.info) for further information. - -One Wiki Only? Fork It. ------------------------ - -First off fork this repo and call it something like `-wiki`. - -Multiple Wikis? Clone It. -------------------------- - -In case would you like to create one than one wiki for the same GitHub user or organization, then forking won't cut it. At the moment of this writing GitHub won't allow you to fork a single repository multiple times for the same account. - -There's a workaround to this, however on GitHub's web interface you won't see the sign that says "forked from" in your cloned repository. - -Below instructions how to clone this repository using the CLI: - -**First off, create a new (empty) repository on GitHub, then;** - -```bash -git clone https://github.com/exalted/mdwiki-seed.git -cd mdwiki-seed -git remote add foobar -git push foobar gh-pages -``` - -Create a New Wiki ------------------ - -It all begins by creating an initial file structure for any language that you would like to support. For example, if you're interested having a wiki in English, then you will duplicate `ll_CC` folder and rename your copy to `en`. (For a complete list of languages [`ll`] and country codes [`CC`] [see here](http://msdn.microsoft.com/en-us/library/ee825488).) - -`ll_CC` is a starter template folder which you shouldn't ever edit directly, since you may loose your changes when MDwiki gets updated later. - -> If you want to have your wiki in more than one language, then you duplicate `ll_CC` as many times as necessary and rename each copy with the appropriate language and country code. (Country code is optional and it is only useful if you want to distinguish, for instance, American English from British English, such as: `en_US` and `en_GB`.) - -Getting Started ---------------- - -_You should have a language wiki folder by now, if not, go back and read above to create one._ - -Suppose your first wiki is going to be in English, hence you must have a folder called `en`, as previously described. - -1. Open `index.html` file with your favorite plain text editor (the one that is at the same level where `ll_CC` and your language folder is located, **NOT the one inside your language folder**) -1. Find where it says "Override `ll_CC` below with your default language and country code" -1. Change refresh meta tag from `url=ll_CC/` to `url=en/` **(trailing `/` is very important)** - -Structure ---------- - -_All file references here are relative to their respective language folder._ - -| Name | Type | Description | -| :--- | :--- | :--- | -| `index.md` | File | Starting poing (a.k.a. "home page") for your wiki. **Note this is not the `index.html`, but `index.md`**! | -| `navigation.md` | File | Various settings of your wiki (e.g., name of your wiki, items in the navigation bar at the top, etc.) | -| `config.json` | File | If you don't know what this is for, don’t touch it. | -| `pages` | Folder | Ideally, inside this folder, you create one `*.md` file for every page inside your wiki (e.g., `foo.md`, `much-longer-names-are-also-okay.md`, etc.) You can also create as many subfolders as you need, just remember to link them accordingly. | -| `uploads` | Folder | An example folder structure where you could put other files. **Although it is best to host your files somewhere else, like Dropbox, or a CDN, etc.** | - -Best Practices --------------- - -### Relative URLs - -Instead of using absolute URLs when linking one wiki page to another, use relative URLs. - -For instance if `en/pages/foo.md` page had to link to `en/pages/bar.md`, it is enough to just add `[Click here](bar.md)` in your markdown. - -### Don't Host Your Uploads in Git(Hub) - -Instead of hosting your uploads inside the `uploads` folder, consider using Dropbox, Google Drive, or a CDN. - -### Add References to Uploads - -**Whenever you can, avoid hosting your uploads using Git(Hub).** - -If you _must_ add references to files hosted inside the `uploads` folder here's how to do it, for instance: `![Image Title](uploads/images/foo.png)`. Add that in your markdown and you're good to go. - - -How to Preview -============== - -In order to preview your changes locally, prior to publishing online, you may need to take some actions. Below some starting points for each operating system, also check out MDwiki's [frequently asked questions](http://dynalon.github.io/mdwiki/#!faq.md) section for some ideas. - -Mac OS ------- - -The easiest way to serve up static sites on a Mac is to use [Anvil](http://anvilformac.com). Go ahead and download it from their website, install and add a site using the status bar icon: simply select the folder where your wiki is located on your Mac. - -Windows -------- - -> This section needs some :heart:. - -Linux ------ - -You can use [Prax](http://ysbaddaden.github.io/prax/). Prax is a pure ruby alternative to Pow!! that runs on GNU/Linux. - - -For Developers -============== - -You don't need to read below here or do anything at all if you're only interested creating your own wiki. This section is for developers or maintainers of this repository. - -Update MDwiki -------------- - -> Current version: [0.6.2](http://git.io/HBH5Wg). - -1. Go to https://github.com/Dynalon/mdwiki/releases/latest -1. Click on the green button on that page to download the latest release -1. Extract the contents of the archive file -1. Copy `mdwiki-slim.html` file from the extracted files onto `ll_CC/index.html` file in this repository by renaming, thus overriding `index.html` -1. Update the version information above -1. Commit and push your changes - -You can now delete any files downloaded previously, if you want to. diff --git a/config.json b/config.json deleted file mode 100644 index 3c3f1c4..0000000 --- a/config.json +++ /dev/null @@ -1 +0,0 @@ -{"additionalFooterText":"All content and images © by Brandon Giesing ","anchorCharacter":"#","lineBreaks":"gfm","title":"Vox Variety","useSideMenu":false} diff --git a/index.html b/index.html index 14a11de..c7aaa53 100644 --- a/index.html +++ b/index.html @@ -1,196 +1,113 @@ - - + - Vox Variety - - - - - - - - - - - - - - - - - - - - - - - + + + Vox Variety + + + + + + + + + - + +
+
+

+ +
+
Unique Radio. 24/7.
+
+ +

-
- +
+ + + + + + + + + + + + diff --git a/index.md b/index.md deleted file mode 100644 index 5021782..0000000 --- a/index.md +++ /dev/null @@ -1,18 +0,0 @@ -Welcome to the official home of **Vox Variety**, a 24-hour Variety Internet Radio for Users, by Users! - -The Navigation above includes more ways to listen along with the player below and ways to contribute to keep the station alive. - -## LISTEN NOW -
- - - -## SONG REQUEST - diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..23bb366 --- /dev/null +++ b/logo.svg @@ -0,0 +1,4 @@ + + + + diff --git a/navigation.md b/navigation.md deleted file mode 100644 index 6f24398..0000000 --- a/navigation.md +++ /dev/null @@ -1,23 +0,0 @@ - - -# Vox Variety - - - -[gimmick:theme](paper) - - - -[Contribute]() - - * [Donate on Patreon](https://www.patreon.com/voxvariety) - * [Submit website changes on GitHub](https://github.com/TeamVoxive/teamvoxive.github.io/fork) - -[Other Players]() - - * [Radionomy](http://radionomy.com/en/radio/voxvariety/index) - * [TuneIn](http://tunein.com/radio/Vox-Variety-s244928/) - * [Streamitter](http://www.streamitter.com/vox-variety-1657.php) - * [NikNot](http://niknot.com/stations/vox-variety/) - -[Blog](pages/blog.md) diff --git a/pages/blog.md b/pages/blog.md deleted file mode 100644 index 50a255d..0000000 --- a/pages/blog.md +++ /dev/null @@ -1 +0,0 @@ -[gimmick: iframe](http://www.voxvariety.tumblr.com) diff --git a/pages/uploads/documents/.gitkeep b/pages/uploads/documents/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pages/uploads/images/.gitkeep b/pages/uploads/images/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pages/uploads/movies/.gitkeep b/pages/uploads/movies/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pages/uploads/music/.gitkeep b/pages/uploads/music/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pages/uploads/pdf/.gitkeep b/pages/uploads/pdf/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/pages/uploads/presentations/.gitkeep b/pages/uploads/presentations/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/style.css b/style.css new file mode 100644 index 0000000..9a1c8e7 --- /dev/null +++ b/style.css @@ -0,0 +1,24 @@ +/* Custom Stylesheet */ +/** + * Use this file to override Materialize files so you can update + * the core Materialize files in the future + * + * Made By MaterializeCSS.com + */ + +.icon-block { + padding: 0 15px; +} +.icon-block .material-icons { + font-size: inherit; +} + +body { + display: flex; + min-height: 100vh; + flex-direction: column; +} + +main { + flex: 1 0 auto; +} \ No newline at end of file