Created
June 4, 2018 16:12
-
-
Save jaredlockhart/d3e3b319f0525e92a11fea8e6d304af4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{% component card title edit_url body %} | |
<h3>{{ title }}</h3> | |
<a href="{{ edit_url }}">Edit</a> | |
<p>{{ body }}</p> | |
{% endcomponent %} | |
{% card | |
title="Overview" | |
edit_url={% url wahtever %} | |
body=.....how do we handle this better | |
%} | |
{% card | |
title="Prefs" | |
edit_url={% url wahtever %} | |
body=..... | |
%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment