Update and rename getting-started.md to index.html
This commit is contained in:
@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
title: Iris Music Interface
|
|
||||||
description: A smooth and responsive UI for Mopidy music server
|
|
||||||
permalink: /
|
|
||||||
---
|
|
||||||
<img src="https://raw.githubusercontent.com/jaedb/iris/master/src/assets/logo.png" width="256" />
|
|
||||||
|
|
||||||
Iris (formerly known as Spotmop) is a Mopidy HTTP client that utilizes Spotify to create an interactive, user-friendly and collaborative music interface. Built and maintained by James Barnsley.
|
|
||||||
|
|
||||||
[]()
|
|
||||||

|
|
||||||

|
|
||||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=james%40barnsley%2enz&lc=NZ&item_name=James%20Barnsley¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
|
||||||
|
|
||||||
Features
|
|
||||||
--------
|
|
||||||
|
|
||||||
* Full web-based interface controls for Mopidy
|
|
||||||
* Integrated with Spotify and LastFM APIs for high-quality artwork and extra info
|
|
||||||
* Support for any Mopidy backend
|
|
||||||
* Improved support for local libraries using SQLite extension
|
|
||||||
* Browse and manage your playlists, along with top tracks, new releases and genre browser
|
|
||||||
* Discover new and related music, powered by Spotify
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
|
||||||
--------
|
|
||||||
|
|
||||||
* Mopidy
|
|
||||||
* Mopidy-Spotify (recommended, not required)
|
|
||||||
* Mopidy-Local-Sqlite (recommended, not required)
|
|
||||||
|
|
||||||
Getting started
|
|
||||||
-------
|
|
||||||
|
|
||||||
* [Installation](https://github.com/jaedb/Iris/wiki/Getting-started#installing)
|
|
||||||
* [Debugging](https://github.com/jaedb/Iris/wiki/Advanced#debugging)
|
|
||||||
* [Issues and requests](https://github.com/jaedb/Iris/wiki/Support#before-you-log-an-issue)
|
|
||||||
* [Changelog](https://github.com/jaedb/iris/releases)
|
|
||||||
73
docs/index.html
Normal file
73
docs/index.html
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
---
|
||||||
|
layout: default
|
||||||
|
overview: true
|
||||||
|
---
|
||||||
|
|
||||||
|
<section class="intro">
|
||||||
|
<div class="grid">
|
||||||
|
<div class="unit whole center-on-mobiles">
|
||||||
|
<p class="first">EXAMPLE</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="features">
|
||||||
|
<div class="grid">
|
||||||
|
<div class="unit one-third">
|
||||||
|
<h2>Simple</h2>
|
||||||
|
<p>
|
||||||
|
No more databases, comment moderation, or pesky updates to install—just <em>your content</em>.
|
||||||
|
</p>
|
||||||
|
<a href="/docs/usage/">How Jekyll works →</a>
|
||||||
|
</div>
|
||||||
|
<div class="unit one-third">
|
||||||
|
<h2>Static</h2>
|
||||||
|
<p><a href="https://daringfireball.net/projects/markdown/">Markdown</a> (or <a href="http://redcloth.org/textile">Textile</a>), <a href="https://github.com/Shopify/liquid/wiki">Liquid</a>, HTML <span class="amp">&</span> CSS go in. Static sites come out ready for deployment.</p>
|
||||||
|
<a href="/docs/templates/">Jekyll template guide →</a>
|
||||||
|
</div>
|
||||||
|
<div class="unit one-third">
|
||||||
|
<h2>Blog-aware</h2>
|
||||||
|
<p>
|
||||||
|
Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.
|
||||||
|
</p>
|
||||||
|
<a href="http://import.jekyllrb.com">Migrate your blog →</a>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<section class="quickstart">
|
||||||
|
<div class="grid">
|
||||||
|
<div class="unit golden-small center-on-mobiles">
|
||||||
|
<h3>Get up and running <em>in seconds</em>.</h3>
|
||||||
|
</div>
|
||||||
|
<div class="unit golden-large code">
|
||||||
|
<p class="title">Quick-start Instructions</p>
|
||||||
|
<div class="shell">
|
||||||
|
<p class="line">
|
||||||
|
<span class="path">~</span>
|
||||||
|
<span class="prompt">$</span>
|
||||||
|
<span class="command">gem install jekyll bundler</span>
|
||||||
|
</p>
|
||||||
|
<p class="line">
|
||||||
|
<span class="path">~</span>
|
||||||
|
<span class="prompt">$</span>
|
||||||
|
<span class="command">jekyll new my-awesome-site</span>
|
||||||
|
</p>
|
||||||
|
<p class="line">
|
||||||
|
<span class="path">~</span>
|
||||||
|
<span class="prompt">$</span>
|
||||||
|
<span class="command">cd my-awesome-site</span>
|
||||||
|
</p>
|
||||||
|
<p class="line">
|
||||||
|
<span class="path">~/my-awesome-site</span>
|
||||||
|
<span class="prompt">$</span>
|
||||||
|
<span class="command">bundle exec jekyll serve</span>
|
||||||
|
</p>
|
||||||
|
<p class="line">
|
||||||
|
<span class="output"># => Now browse to http://localhost:4000</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</section>
|
||||||
Reference in New Issue
Block a user