25 lines
979 B
Handlebars
25 lines
979 B
Handlebars
|
{{#freestyle-usage "log-stream" title="Log Stream"}}
|
||
|
<div class="boxed-section">
|
||
|
<div class="boxed-section-head">
|
||
|
<span>
|
||
|
<button
|
||
|
class="button {{if (eq mode1 "stdout") "is-info"}}"
|
||
|
onclick={{action (mut mode1) "stdout"}}>stdout</button>
|
||
|
<button
|
||
|
class="button {{if (eq mode1 "stderr") "is-danger"}}"
|
||
|
onclick={{action (mut mode1) "stderr"}}>stderr</button>
|
||
|
</span>
|
||
|
<span class="pull-right">
|
||
|
<button class="button is-white">Head</button>
|
||
|
<button class="button is-white">Tail</button>
|
||
|
<button class="button is-white" onclick={{toggle "isPlaying1" this}}>
|
||
|
{{x-icon (if isPlaying1 "media-play" "media-pause") class="is-text"}}
|
||
|
</button>
|
||
|
</span>
|
||
|
</div>
|
||
|
<div class="boxed-section-body is-dark is-full-bleed">
|
||
|
<pre class="cli-window"><code>{{if (eq mode1 "stdout") sampleOutput sampleError}}</code></pre>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{/freestyle-usage}}
|