jmou/cgithub
git clone https://github.com/jmou/cgithub.git
git clone git@github.com:jmou/cgithub.git
Loading…
(top)/views/repo.eta
1.25 KB / 31 lines / 28 loc
History
View raw
<% layout("/layouts/repo.eta") %>

<% if (it.info) { %>
  <div class="box repo-info">
    <% if (it.info.description) { %>
      <div class="description"><%= it.info.description %></div>
    <% } %>
    <% if (it.info.website) { %>
      <div class="detail"><img src="/static/icons/link.svg" alt="" class="icon"> <a href="<%= it.info.website %>" rel="noopener noreferrer"><%= it.info.website %></a></div>
    <% } %>
    <% if (it.info.stars) { %>
      <span class="detail"><img src="/static/icons/star.svg" alt="stars" class="icon"> <%= it.info.stars %></span>
    <% } %>
    <% if (it.info.forks) { %>
      <span class="detail"><img src="/static/icons/git-fork.svg" alt="forks" class="icon"> <%= it.info.forks %></span>
    <% } %>
    <% if (it.info.numReleases) { %>
      <div class="detail">
        <a href="/<%= it.repo.owner %>/<%= it.repo.name %>/releases"><%= it.info.numReleases %> releases</a>
        <span id="latest-release"></span>
      </div>
    <% } %>
  </div>
<% } %>

<div class="placeholder languages box" data-src="/api/<%= it.repo.owner %>/<%= it.repo.name %>/sidebar">
    <div class="language-bar"><span style="width: 100%; background: #ededed"></span></div>
    <ul class="language-list"><li>…</li></ul>
</div>

<%~ include("./_tree", it) %>