{% extends 'layout.html' %} {% block content %}
COMPONENTS
Material Design Lite (MDL) is a library of components for web developers based on Google's Material Design Philosophy: "A visual language for our users that synthesizes the classic principles of good design with the innovation and possibility of technology and science." Understanding the goals and principles of Material Design is critical to the proper use of the Material Design Lite components. If you have not yet read the Material Design Introduction you should do so before attempting to use the components.
{% for category in page.categories -%}

{{ category.title }}

{{ category.description }}

{% if category.components.length > 1 %}
{%- endif %} {% for component in category.components %} {% if component.caption %}

{{ component.caption }}

{%- endif %} {% if component.warning %}
Note: {{ component.warning }}
{%- endif %} {% for snippet_group in component.snippets %} {% set snippet_group["component_name"] = component.name %} {% include "./snippets.html" with snippet_group only %} {%- endfor %} {% set demo_css = "../../dist/components/" + component.name + "/demo.css" %} {% set demo_js = "../../dist/components/" + component.name + "/demo.js" %} {% set demo = "../../src/" + component.name + "/demo.html" %} {% include demo ignore missing %}
{% set doc = "../../dist/components/" + component.name + "/index.html" %} {% include doc ignore missing %}
{%- endfor %}
{%- endfor %}
{% endblock %}