-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (22 loc) · 1019 Bytes
/
index.html
File metadata and controls
29 lines (22 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Most commonly followed Twitter accounts
html_title: Most commonly followed Twitter accounts
---
<div class="home-intro">
<h1>The most commonly followed Twitter accounts by various groups of people</h1>
<div class="content">
<p>The code used to <a href="https://github.com/tylerpearson/twitter-most-followed-scripts">analyze the list</a> and <a href="https://github.com/tylerpearson/twitter-most-followed">display the results</a> is on Github.</p>
<p>If there is another group you'd like to see analyzed, feel free to shoot me a message at <a href="https://twitter.com/tylerpearson">@tylerpearson</a> or use the code linked above.</p>
</div>
<ul class="posts">
{% assign sortedPosts = site.posts | sort: 'title' %}
{% for post in sortedPosts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<hr>
<div class="content">
<p class="credit">Created by <a href="https://tylerp.me">Tyler Pearson</a>.</p>
</div>
</div>