mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-07 08:57:54 +08:00
18 lines
379 B
HTML
18 lines
379 B
HTML
{% extends "base.template.html" %}
|
|
|
|
{% block content %}
|
|
<h1>Error: {$ doc.id $}
|
|
<div><span class='hint'>{$ doc.fullName $}</span></div>
|
|
</h1>
|
|
|
|
<div>
|
|
<pre class="minerr-errmsg" error-display="{$ doc.formattedErrorMessage $}">{$ doc.formattedErrorMessage $}</pre>
|
|
</div>
|
|
|
|
<h2>Description</h2>
|
|
<div class="description">
|
|
{$ doc.description | marked $}
|
|
</div>
|
|
|
|
{% endblock %}
|