layout | title | excerpt | search_omit | landing | headline |
---|---|---|---|---|---|
docs |
Welcome |
Shindig |
true |
true |
Shindig is a container for rendering and hosting Google gadgets and OpenSocial applications anywhere around the web |
... and now taken over by the community
Shindig ships with an engine that renders application written in Javascript / HTML / CSS using the Google Gadgets specification, safely into any webpage.
JavaScript environment that sits on top of the Gadget Container JavaScript and provides OpenSocial specific functionality (profiles, friends, activities, datastore).
Shindig is open source. It's hosted, developed, and maintained on GitHub by the OpenDashboards community.
View the GitHub projectUsed by Google, Atlassian and many other companies, Shindig has been a core technology selection from social websites to app marketplaces and dashboards.
{% for company in site.data.companies %}
{% assign idx = forloop.index | modulo: 3 %}
{% if idx == 1 %}
<div class="row bs-docs-featured-sites">
<div class="col-xs-6 col-sm-4" style="padding: 10px;"> <img src="{{company.image}}" alt="Image" class="img-responsive" style="height: 128px;">
<h3>{{company.name}}</h3>
<a href="{{company.url}}" target="_blank"><small>{{company.url}}</small></a>
<p>{{company.description}}</p>
</div>
{% else %}
<div class="col-xs-6 col-sm-4" style="padding: 10px;"> <img src="{{company.image}}" alt="Image" class="img-responsive" style="height: 128px;">
<h3>{{company.name}}</h3>
<a href="{{company.url}}" target="_blank"><small>{{company.url}}</small></a>
<p>{{company.description}}</p>
</div>
{% endif %}
{% if idx == 0 %}
</div>
{% endif %}
{% endfor %}