Skip to content

Commit

Permalink
www- fix key names on index and user
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Aug 9, 2021
1 parent 59fe74e commit 8074139
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions www/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
<div class="terminal-card">
<div>
<h3 style="margin-bottom: 0;">
<a class="link-as-text" href="{{get_user_path this.Owner}}/{{this.name}}"></a>
<a class="link-as-text" href="{{get_user_path this.Owner}}/{{this.Name}}"></a>
<span><i class="star icon"></i> {{this.StarCount}}</span>
</h3>
<div><i class="balance scale icon"></i> {{#if this.license}}{{this.license}}{{else}}No{{/if}} License</div>
<div>{{this.description}}&nbsp;</div>
<div><i class="balance scale icon"></i> {{#if this.License}}{{this.License}}{{else}}No{{/if}} License</div>
<div>{{this.Description}}&nbsp;</div>
</div>
</div>
{{/each}}
Expand All @@ -24,11 +24,11 @@
<div class="terminal-card">
<div>
<h3 style="margin-bottom: 0;">
<a class="link-as-text" href="{{get_user_path this.Owner}}/{{this.name}}"></a>
<a class="link-as-text" href="{{get_user_path this.Owner}}/{{this.Name}}"></a>
<span><i class="star icon"></i> {{this.StarCount}}</span>
</h3>
<div><i class="balance scale icon"></i> {{#if this.license}}{{this.license}}{{else}}No{{/if}} License</div>
<div>{{this.description}}&nbsp;</div>
<div><i class="balance scale icon"></i> {{#if this.License}}{{this.License}}{{else}}No{{/if}} License</div>
<div>{{this.Description}}&nbsp;</div>
</div>
</div>
{{/each}}
Expand Down
8 changes: 4 additions & 4 deletions www/user.hbs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<h2>@{{powner.name}}'s Packages</h2>
<h2>@{{powner.Name}}'s Packages</h2>
<div class="pkg-grid">
{{#each pkgs}}
<div class="terminal-card">
<div>
<h3>
<a href="./{{powner.Name}}/{{this.name}}">{{this.name}}</a>
<a href="./{{powner.Name}}/{{this.Name}}">{{this.Name}}</a>
<span><i class="star icon"></i> {{this.StarCount}}</span>
</h3>
<div><i class="balance scale icon"></i> {{#if this.license}}{{this.license}}{{else}}No{{/if}} License</div>
<div>{{this.description}}</div>
<div><i class="balance scale icon"></i> {{#if this.License}}{{this.License}}{{else}}No{{/if}} License</div>
<div>{{this.Description}}</div>
</div>
</div>
{{/each}}
Expand Down

0 comments on commit 8074139

Please sign in to comment.