Skip to content

Commit 34cb250

Browse files
author
Steve Krouse
committed
log add date; change intro text
1 parent 6109ee5 commit 34cb250

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

_data/git-log.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

log.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ title: Log
1212
font-weight: bold;
1313
margin-bottom: 5px;
1414
}
15-
#title {
16-
font-size: 50px;
17-
}
1815
.date {
1916
font-size: 15px;
2017
color: #aaa;
@@ -32,16 +29,16 @@ title: Log
3229

3330
<h1 id="title">Log</h1>
3431

35-
This log represents my progress on the Future of Coding project. I intend to update this log every weekday, except when otherwise specified.
32+
Welcome to my development journal. This is an experiment in radical transparency. You can read my unfiltered daily thoughts below. Pardon my typo-laden stream-of-consciousness.
3633

37-
The data for this log are pulled from the commit message history for this repository, which can be found in [`/_data/git-log.json`](/_data/git-log.json).
34+
The data for this page is pulled from the commit message history for this repository. It's similar to what you'd see if you did `git log`.
3835

3936
<div id="commits-container">
4037
{% for commit in site.data.git-log %}
4138
{% if commit.message != 'updated git log' %}
4239
{% unless commit.message contains 'Merge branch' %}
4340
{% assign first_line = commit.message | newline_to_br | split: '<br />' | first %}
44-
{% assign date = commit.committer.date | date_to_string %}
41+
{% assign date = commit.committer.date | date: "%m/%d/%y %a %l:%M %p" %}
4542
{% assign message = commit.message | remove_first: first_line %}
4643
<div class="commit">
4744
<h2 class="header">

0 commit comments

Comments
 (0)