Skip to content

Latest commit

 

History

History
69 lines (58 loc) · 3.21 KB

index.md

File metadata and controls

69 lines (58 loc) · 3.21 KB
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

Donated by Google to the Apache Foundation

... and now taken over by the community


Image

Google Gadgets

Shindig ships with an engine that renders application written in Javascript / HTML / CSS using the Google Gadgets specification, safely into any webpage.

Image

OpenSocial

JavaScript environment that sits on top of the Gadget Container JavaScript and provides OpenSocial specific functionality (profiles, friends, activities, datastore).

Image

Rich feature set

Build on top of existing features or create your own that meet your needs. Pluggable environment of JavaScript features injected into your apps on demand.


Shindig is open source. It's hosted, developed, and maintained on GitHub by the OpenDashboards community.

View the GitHub project

Trusted by the Enterprise.

Used 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 %}