{{ user['name'] }}


Bio
{{ user['bio'] }}

Followers {{ user['followers'] }}
Followings {{ user['following'] }}

Public repositories {{ user['public_repos'] }}
Public gists {{ user['public_gists'] }}

Location {{ user['location'] }}
Company {{ user['company'] }}
Twitter {{ user['twitter_username'] }}
Blog | Site {{ user['blog'] }}


Joined at {{ user['created_at'] }}


Repositories

{{ user["login"] }} has {{ user['public_repos'] }} public repositories.
Here is at last 30 of them.


{% for i in range(len_repos) %}
{{ repos[i]['name'] }}
{{ repos[i]['description'] }} {{ repos[i]['stargazers_count'] }} | {{ repos[i]['forks_count'] }}


{% endfor %}

Gists

About gists, {{ user["login"] }} has {{ user['public_gists'] }} public gists.
Here is at last 30 of them.


{% for i in range(len_gists) %}
{{ gists[i]['description'] }}


{% endfor %}

Followers

{{ user["login"] }} has {{ len_followers }} followers.
Here is at last 30 of them.


{% for i in range(len_followers) %}

{{ followers[i]['login'] }}
Go to Github | Go for Gsearch


{% endfor %}

Following

BTW, {{ user["login"] }} is following {{ len_following }} users.
Here is at last 30 of them.


{% for i in range(len_following) %}

{{ following[i]['login'] }}
Go to Github | Go to Github


{% endfor %}