-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopportunity_costs.pug
40 lines (35 loc) · 1.57 KB
/
opportunity_costs.pug
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
doctype html
html(lang="en")
head
meta(charset="utf-8")
link(href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous")
title Climate financing opportunity costs
link(rel="stylesheet", type="text/css", href="public/style.css")
body.text-responsive
include includes/header.pug
include includes/mixins.pug
div.d-flex.flex-column.justify-content-center
div(class="d-flex flex-wrap justify-content-center py-3 mb-4", style="margin:0 auto; width: 60%;")
|We present the result for the present value of compensation workers
|for lost wages and retraining costs.
// Output
table.table
tr
td Global PV compensation workers for lost wages (in billion dollars)
td
output#pv-lost-wage N/A
tr
td Global PV retraining cost (in billion dollars)
td
output#pv-retraining-cost N/A
// Input
div(class="d-flex flex-wrap justify-content-center py-3 mb-4", style="margin:0 auto")
+discountRate
// Data
.px-3.mb-3
+resultDataDownload
script(src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous")
script(type="module").
import {calculate} from "./js/opportunity_costs.js"
window.calculate = calculate
calculate()