You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
682 B
35 lines
682 B
{{< LucidityLayout}}
|
|
|
|
{{$content}}
|
|
|
|
<article class="card">
|
|
<span class="badge">
|
|
{{exceptionType}}
|
|
</span>
|
|
<h2>
|
|
{{exception.getMessage}}
|
|
</h2>
|
|
{{#exception.getFile}}
|
|
<a href="zed://file/{{.}}:{{exception.getLine}}" class="file">{{.}}:{{exception.getLine}}</a>
|
|
{{/exception.getFile}}
|
|
<section class="info">
|
|
<span>PHP {{phpVersion}}</span>
|
|
<span>lucidity {{lucidityVersion}}</span>
|
|
</section>
|
|
</article>
|
|
|
|
<article class="card edgeless">
|
|
{{#trace}}
|
|
<article class="list-item">
|
|
{{#file}}
|
|
<span class="file">{{.}}:{{line}}</span>
|
|
{{/file}}
|
|
<h4>{{class}}<h4>
|
|
<h3>{{function}}</h3>
|
|
</article>
|
|
{{/trace}}
|
|
</article>
|
|
|
|
{{/content}}
|
|
|
|
{{/LucidityLayout}}
|
|
|