forked from s-hfarooq/spin2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathline_count_template.html
53 lines (48 loc) · 1.16 KB
/
line_count_template.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$num_lines lines in $filename</title>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Open Sans', sans-serif;
height: 100vh;
}
.num-lines-text {
text-align: center;
font-weight: 400;
color: #333333;
font-size: 1.75em;
margin-bottom: 0;
}
.num-lines-text a {
color: #0000EE;
text-decoration: none;
font-weight: 600;
}
.num-lines-text .number {
font-weight: 600;
}
.num-lines {
font-size: 2.25em;
margin-top: 15px;
color: #444444;
}
</style>
</head>
<body>
<p class="num-lines-text">
Number of lines in
<a href="https://github.com/apappu9/spin2020/blob/master/$filename" target="_blank">$filename</a>
is
</p>
<h1 class="num-lines">$num_lines</h1>
</body>
</html>