-
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.
* incorrect tabs on yaml template * added support for multiple reports and started mac work
- Loading branch information
1 parent
d1cf8aa
commit b2856ef
Showing
11 changed files
with
127 additions
and
32 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<html lang="en" data-theme="dark"> | ||
<head><title>Clingy Report - clingy flow</title></head> | ||
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css"> | ||
<body> | ||
<main class="container"> | ||
<hgroup> | ||
<h1> | ||
Clingy Report - clingy flow | ||
</h1> | ||
<h2> | ||
Steps: | ||
</h2> | ||
</hgroup> | ||
|
||
<div> | ||
<hgroup> | ||
<h3> | ||
#0 start | ||
</h3> | ||
<h4> | ||
starting clingy flow | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of start" src="0.jpg" /> | ||
</div> | ||
|
||
<div> | ||
<hgroup> | ||
<h3> | ||
#1 build clingy | ||
</h3> | ||
<h4> | ||
building clingy with Makefile target | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of build clingy" src="1.jpg" /> | ||
</div> | ||
|
||
<div> | ||
<hgroup> | ||
<h3> | ||
#2 clingy init | ||
</h3> | ||
<h4> | ||
displaying printout of only calling clingy | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of clingy init" src="2.jpg" /> | ||
</div> | ||
|
||
<div> | ||
<hgroup> | ||
<h3> | ||
#3 clingy help | ||
</h3> | ||
<h4> | ||
display help text for clingy | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of clingy help" src="3.jpg" /> | ||
</div> | ||
|
||
<div> | ||
<hgroup> | ||
<h3> | ||
#4 finish | ||
</h3> | ||
<h4> | ||
finished clingy flow | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of finish" src="4.jpg" /> | ||
</div> | ||
|
||
</main> | ||
</body> | ||
</html> |
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,27 +1,29 @@ | ||
<html lang="en"> | ||
<html lang="en" data-theme="dark"> | ||
<head><title>Clingy Report - {{.Label}}</title></head> | ||
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css"> | ||
<body> | ||
<hgroup> | ||
<h1> | ||
Clingy Report - {{.Label}} | ||
</h1> | ||
<h2> | ||
Steps: | ||
</h2> | ||
</hgroup> | ||
{{range $idx, $step := .Steps}} | ||
<div> | ||
<main class="container"> | ||
<hgroup> | ||
<h3> | ||
#{{$idx}} {{$step.Label}} | ||
</h3> | ||
<h4> | ||
{{$step.Description}} | ||
</h4> | ||
<h1> | ||
Clingy Report - {{.Label}} | ||
</h1> | ||
<h2> | ||
Steps: | ||
</h2> | ||
</hgroup> | ||
<img alt="screenshot of {{$step.Label}}" src="{{$step.ImageOutput}}" /> | ||
</div> | ||
{{end}} | ||
{{range $idx, $step := .Steps}} | ||
<div> | ||
<hgroup> | ||
<h3> | ||
#{{$idx}} {{$step.Label}} | ||
</h3> | ||
<h4> | ||
{{$step.Description}} | ||
</h4> | ||
</hgroup> | ||
<img alt="screenshot of {{$step.Label}}" src="{{$step.ImageOutput}}" /> | ||
</div> | ||
{{end}} | ||
</main> | ||
</body> | ||
</html> |
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