File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -19,12 +19,17 @@ title: Log
19
19
font-style : italic ;
20
20
}
21
21
.commit > .files {
22
- color : rgb (255 ,169 ,77 );
23
22
margin-bottom : 5px ;
24
23
}
25
24
.hash {
26
25
font-size : 15px ;
27
26
}
27
+ .additions {
28
+ color : rgb (81 ,207 ,102 );
29
+ }
30
+ .deletions {
31
+ color : rgb (250 ,82 ,82 );
32
+ }
28
33
</style >
29
34
30
35
<h1 id =" title " >Log</h1 >
@@ -51,7 +56,11 @@ The data for this page is pulled from the commit message history for this reposi
51
56
{% for change in commit.changes %}
52
57
{% if change[ 2] != '_ data/git-log.json' %}
53
58
<div class =" file " >
54
- edited: <a target =" _blank " href =" https://github.com/stevekrouse/futureofcoding.org/blob/{{commit.commit}}/{{change[2]}} " >{{change[ 2] }}</a >
59
+ <span class =" additions " >{{change[ 0] }} additions</span > &
60
+ <span class =" deletions " >{{change[ 1] }} deletions</span >
61
+ <a target =" _blank " href =" https://github.com/stevekrouse/futureofcoding.org/blob/{{commit.commit}}/{{change[2]}} " >
62
+ {{change[ 2] }}
63
+ </a >
55
64
</div >
56
65
{% endif %}
57
66
{% endfor %}
You can’t perform that action at this time.
0 commit comments