github.com/justinjmoses/evergreen@v0.0.0-20170530173719-1d50e381ff0d/public/static/partials/github_commit_panel.html (about)

     1  <div class="commit-panel clearfix">
     2    <div class="commit-meta-data-wrapper">
     3      <img gravatar="commit.author_email" class="gravatar-small">
     4      <div class="commit-message">
     5        <strong ng-bind-html="commit.message | escapeHtml | jiraLinkify: jiraHost | ansi | trustAsHtml"></strong>
     6      </div>
     7      <div class="commit-message-author">
     8        <span class="semi-muted">
     9          [[commit.author]]
    10          ([[commit.author_email]])
    11        </span>
    12        <span class="muted">
    13          authored at [[commit.push_time | convertDateToUserTimezone:timezone:"MMM D, YYYY h:mm:ss a"]]
    14        </span>
    15      </div>
    16    </div>
    17    <div class="pull-right">
    18      <a class="btn btn-default btn-hash btn-xs" ng-href="https://github.com/[[commit.repo_owner]]/[[commit.repo_name]]/commit/[[commit.gitspec]]">[[commit.gitspec.substr(0, 5)]]</a>
    19    </div>
    20  </div>