Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make the emojis nicer #38

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
<meta name="description" content="Nextflow workflow report for run id [${workflow.runName}]">
<meta name="author" content="Sabrina Krakau">
<link rel="icon" type="image/png" href="https://www.nextflow.io/img/favicon.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<title>[${workflow.runName}] Nextflow Workflow Report</title>

Expand Down Expand Up @@ -213,19 +212,19 @@ <h4>Workflow execution completed unsuccessfully!</h4>

<p>This is equivalent to:</p>
<dl class="row small">
<dt class="col-sm-6"><i class="fa fa-tree"></i> Months a tree would need to sequester this amount of CO2</dt>
<dt class="col-sm-6">&#127795 Months a tree would need to sequester this amount of CO2</dt>
<dd class="col-sm-3">${co2_totals.tree}</dd>

<dt class="col-sm-6"><i class="fa fa-car"></i> Km by car</dt>
<dt class="col-sm-6">&#128663 Km by car</dt>
<dd class="col-sm-3">${co2_totals.car}</dd>

<% if (co2_totals.plane_percent) { %>
<dt class="col-sm-6"><i class="fa fa-plane"></i> Percentage of a flight Paris - London</dt>
<dt class="col-sm-6">&#128745 Percentage of a flight Paris - London</dt>
<dd class="col-sm-3">${co2_totals.plane_percent}%</dd>
<% } %>

<% if (co2_totals.plane_flights) { %>
<dt class="col-sm-6"><i class="fa fa-plane"></i> Number of flights Paris - London</dt>
<dt class="col-sm-6">&#128745 Number of flights Paris - London</dt>
<dd class="col-sm-3">${co2_totals.plane_flights}</dd>
<% } %>
</dl>
Expand Down