forked from google/material-design-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request google#294 from google/comp-pages
Fix visual on component pages (fixes google#277)
- Loading branch information
Showing
2 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
{% extends 'layout.html' %} | ||
|
||
{% block content %} | ||
<div class="component-description mdl-cell mdl-cell--12-col"> | ||
<div> | ||
<a href="../">back to all </a> | ||
</div> | ||
|
||
<div> | ||
<a href="../">back to all </a> | ||
</div> | ||
|
||
<div> | ||
<button class="mdl-button mdl-js-button mdl-button--raised"> | ||
<a href="demo.html">demo</a></button> | ||
</div> | ||
|
||
|
||
|
||
{{content|safe}} | ||
<div> | ||
<a href="demo.html" class="mdl-button mdl-js-button mdl-button--raised">demo</a></button> | ||
</div> | ||
|
||
{{content|safe}} | ||
</div> | ||
{% endblock %} | ||
|
||
|