index.html 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="grid_6">
  4. <a href="/pages/tour.html"
  5. ><img src="/images/home_goblin.png"
  6. alt="Goblin holding screenshot" /></a>
  7. </div>
  8. <div class="grid_10">
  9. <p class="promo_paragraph">
  10. MediaGoblin is a free software media publishing platform that anyone
  11. can run. You can think of it as a decentralized alternative to
  12. Flickr, YouTube, SoundCloud, etc. It's also:
  13. </p>
  14. <ul class="feature_bullets">
  15. <!-- Why yes there are a couple of commented out bits here.
  16. We'll be uncommenting them in upcoming releases. ;) -->
  17. <li class="play_bullet">The perfect tool to <b>show and share your media!</b></li>
  18. <li class="world_bullet">Building tools to empower the world through <b>decentralization!</b><!-- and <b>federation!</b>--></li>
  19. <li class="extensibility_bullet">Built for <b>extensibility</b>. Multiple media types, including video support!</li>
  20. <li class="freedom_bullet">Part of the <a href="http://gnu.org/">GNU project</a> and devoted to <b>user freedom</b>.</li>
  21. <li class="community_bullet">Powered by a community of <b>people like you</b>.</li>
  22. </ul>
  23. <p>Learn more about these features by <a href="/pages/tour.html">taking the tour →</a></p>
  24. <!-- <p class="campaign_link"><a href="/pages/campaign.html"><img src="/images/campaign/gavroche_cropped.png" alt="Gavroche says support MediaGoblin!" /></a><a class="campaign_link_link" href="/pages/campaign.html">We're currently running a campaign to support MediaGoblin! Check it out here →</a></p> -->
  25. </div>
  26. <div class="clear"></div>
  27. <div class="grid_16 call_to_action">
  28. <h1>Get started with the latest MediaGoblin release:</h1>
  29. </div>
  30. <div class="clear"></div>
  31. <div class="grid_5">
  32. <h2>Run it</h2>
  33. <p>Learn more about running your own instance of MediaGoblin.</p>
  34. <p>Check out the <a href="https://wiki.mediagoblin.org/EasyDeployment">easy deployment</a> on PaaS, or containers on your own server.</p>
  35. <p>Check out our step-by-step <a href="http://docs.mediagoblin.org/">guide to installing MediaGoblin</a> on your own server.</p>
  36. </div>
  37. <div class="grid_5">
  38. <h2>Use it</h2>
  39. <p>Get started using MediaGoblin with an existing community.</p>
  40. <p><a href="https://wiki.mediagoblin.org/Live_instances">Find sites already running MediaGoblin</a>, or
  41. <a target="_blank"
  42. href="https://demo.sandstorm.io/appdemo/70awyqss6jq2gkz7dwzsnvumzr07256pzdt3hda9acfuxwh6uh7h">try
  43. a demo right now</a>.</p>
  44. </div>
  45. <div class="grid_1 connector">
  46. &amp;
  47. </div>
  48. <div class="grid_5">
  49. <h2>Join us</h2>
  50. <p>MediaGoblin is built by a vibrant and friendly community of people like you!</p>
  51. <p>Learn more about <a href="/pages/join.html">getting involved</a> or <a href="https://wiki.mediagoblin.org/HackingHowto">setting up a local instance for development</a>!</p>
  52. </div>
  53. <div class="clear"></div>
  54. <div class="grid_8">
  55. <h3>Latest blog headlines</h3>
  56. <p><a href="http://mediagoblin.org/news/index.xml"><img class="icon_feed" src="/images/icon_feed.png" alt="Feed icon" /></a>Add the <a href="http://mediagoblin.org/news/index.xml">feed</a> to receive these automatically.</p>
  57. {% for article in articles_page.object_list %}
  58. {% if loop.length > 0 and loop.index <= 5 %}
  59. <article>
  60. <li>
  61. <a href="/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
  62. {{ article.title }}
  63. </a>
  64. </li>
  65. </article>
  66. {% endif %}
  67. {% endfor %}
  68. </div>
  69. <div class="grid_8">
  70. <h3>Stay in touch!</h3>
  71. <p>There are many ways to stay in touch with MediaGoblin:</p>
  72. <ul>
  73. <li>Follow and talk to us on <a href="http://identi.ca/mediagoblin/">Identi.ca</a> and <a href="https://joindiaspora.com/u/mediagoblin">Diaspora</a></li>
  74. <li>Subscribe to our <a href="http://lists.mediagoblin.org/listinfo/devel">mailing list</a></li>
  75. <li>Add the blog's <a href="http://mediagoblin.org/news/index.xml">RSS feed</a></li>
  76. <li>Join us <a href="/pages/join.html#irc">on IRC</a>:<br />
  77. #mediagoblin on irc.freenode.net
  78. </li>
  79. </ul>
  80. </div>
  81. {% endblock content %}