FIX person.js github only add username

This commit is contained in:
pubkey 2017-03-06 18:01:41 +01:00
parent 89ef486413
commit b968259e46
7 changed files with 9 additions and 9 deletions

View File

@ -81,7 +81,7 @@
<i class="fa fa-circle"></i> <i class="fa fa-circle"></i>
<a href="{{person.contact.website}}">{{person.contact.website}}</a> <a href="{{person.contact.website}}">{{person.contact.website}}</a>
<i class="fa fa-circle"></i> <i class="fa fa-circle"></i>
<a href="{{person.contact.github}}">{{person.contact.github}}</a> <a href="https://github.com/{{person.contact.github}}">https://github.com/{{person.contact.github}}</a>
</div> </div>
</div> </div>

View File

@ -43,7 +43,7 @@
<td><i class="fa fa-globe" aria-hidden="true"></i></td> <td><i class="fa fa-globe" aria-hidden="true"></i></td>
</tr> </tr>
<tr> <tr>
<td><a href="{{person.contact.github}}">{{person.contact.github}}</a></td> <td><a href="https://github.com/{{person.contact.github}}">https://github.com/{{person.contact.github}}</a></td>
<td><i class="fa fa-github" aria-hidden="true"></i></td> <td><i class="fa fa-github" aria-hidden="true"></i></td>
</tr> </tr>
</table> </table>

View File

@ -54,14 +54,14 @@
</div> </div>
</a> </a>
<a href="{{person.contact.github}}" target="_blank"> <a href="https://github.com/{{person.contact.github}}" target="_blank">
<div class="item"> <div class="item">
<div class="icon"> <div class="icon">
<i class="fa fa-github"></i> <i class="fa fa-github"></i>
</div> </div>
<div class="text"> <div class="text">
<h4>@{{person.contact.github}}</h4> <h4>@{{person.contact.github}}</h4>
<span>{{person.contact.github}}</span> <span>https://github.com/{{person.contact.github}}</span>
</div> </div>
</div> </div>
</a> </a>

View File

@ -72,8 +72,8 @@
<a href="{{person.contact.website}}"> <a href="{{person.contact.website}}">
{{person.contact.website}}</a> {{person.contact.website}}</a>
<span>;&nbsp;</span> <span>;&nbsp;</span>
<a href="{{person.contact.github}}"> <a href="https://github.com/{{person.contact.github}}">
{{person.contact.github}}</a> https://github.com/{{person.contact.github}}</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -37,7 +37,7 @@
<i class="fa fa-circle" aria-hidden="true"></i> <i class="fa fa-circle" aria-hidden="true"></i>
</div> </div>
<div class="contact-row"> <div class="contact-row">
<a href="{{person.contact.github}}">{{person.contact.github}}</a> <a href="https://github.com/{{person.contact.github}}">https://github.com/{{person.contact.github}}</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -90,7 +90,7 @@
</tr> </tr>
<tr> <tr>
<td><i class="fa fa-github" aria-hidden="true"></i></td> <td><i class="fa fa-github" aria-hidden="true"></i></td>
<td><a href="{{person.contact.github}}">{{person.contact.github}}</a></td> <td><a href="https://github.com/{{person.contact.github}}">https://github.com/{{person.contact.github}}</a></td>
</tr> </tr>
</table> </table>

View File

@ -80,6 +80,6 @@ module.exports = {
street: '1234 Broadway', street: '1234 Broadway',
city: 'New York', city: 'New York',
website: 'johndoe.com', website: 'johndoe.com',
github: 'github.com/JohnDoe' github: 'JohnDoe'
} }
}; };