-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathperfplanet.html
executable file
·160 lines (154 loc) · 5.4 KB
/
perfplanet.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Planet Performance Feed</title>
<meta name="author" content="Stoyan Stefanov" />
<meta
property="og:description"
name="description"
content="News and views from the web performance blogosphere"
/>
<meta property="og:url" content="https://feed.perfplanet.com/" />
<meta property="og:image" content="https://feed.perfplanet.com/logo.png" />
<meta property="og:title" content="Planet Performance Feed" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="shortcut icon" href="https://feed.perfplanet.com/logo.png" type="image/png">
<link
rel="alternate"
type="application/rss+xml"
href="rss.xml"
title="RSS feed for Planet Performance"
/>
<link rel="stylesheet" href="perfplanet.css" />
</head>
<body>
<div class="header">
<div class="logo">
<img
src="logo.png"
width="130"
height="130"
alt="Planet Performance logo"
/>
</div>
<h1>Planet Performance Feed</h1>
<div class="slogan">
News and views from the web performance blogosphere
</div>
</div>
<div class="page">
<div class="body" id="blogs">
Loading...
</div>
<div class="sidebar">
<div class="sb-card">
<h3>Planetarium</h3>
<div>
<ul id="planetarium">
{generateme}
</ul>
</div>
</div>
<div class="sb-card">
<h3>Your blog here</h3>
<div>
<p>
If you blog about performance, or know someone else who does and
should be in this list, please
<a
href="https://github.com/stoyan/perfplanet/blob/master/tools/planetarium.json"
>use GitHub to edit the list of blogs</a
>.
</p>
</div>
</div>
<div class="sb-card">
<h3>Podcast</h3>
<div>
<p>
Listen to interviews with folks from the web performance community
at
<a href="https://podcast.perfplanet.com">podcast.perfplanet.com</a
>.
</p>
<p class="mic">
<a
href="https://podcast.perfplanet.com"
title="Listen to podcast episodes"
><img alt="Microphone icon" src="mic.png"
/></a>
</p>
</div>
</div>
<div class="sb-card">
<h3>The Book</h3>
<div>
<p>
Perfplanet's third edition (December 2011) is available as a book.
</p>
<p class="book">
<a
href="https://www.amazon.com/dp/1449332919/?tag=w3clubs-20"
title="Web Performance Daybook on Amazon"
><img
width="150"
src="daybook.jpg"
alt="perfplanet's book"
/></a>
</p>
</div>
</div>
<div class="sb-card">
<h3>Performance Calendar</h3>
<div class="calendar">
<ul class="calendar-list col3">
<li><a href="http://calendar.perfplanet.com/2023/">2023</a></li>
<li><a href="http://calendar.perfplanet.com/2022/">2022</a></li>
<li><a href="http://calendar.perfplanet.com/2021/">2021</a></li>
<li><a href="http://calendar.perfplanet.com/2020/">2020</a></li>
<li><a href="http://calendar.perfplanet.com/2019/">2019</a></li>
<li><a href="http://calendar.perfplanet.com/2018/">2018</a></li>
<li><a href="http://calendar.perfplanet.com/2017/">2017</a></li>
<li><a href="http://calendar.perfplanet.com/2016/">2016</a></li>
<li><a href="http://calendar.perfplanet.com/2015/">2015</a></li>
<li><a href="http://calendar.perfplanet.com/2014/">2014</a></li>
<li><a href="http://calendar.perfplanet.com/2013/">2013</a></li>
<li><a href="http://calendar.perfplanet.com/2012/">2012</a></li>
<li><a href="http://calendar.perfplanet.com/2011/">2011</a></li>
<li><a href="http://calendar.perfplanet.com/2010/">2010</a></li>
<li><a href="http://calendar.perfplanet.com/2009/">2009</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<a href="https://perfplanet.com">Planet Performance</a> is a project by
<a href="https://www.phpied.com/" title="Visit my blog"
>Stoyan Stefanov</a
>
<a href="mailto:[email protected]" title="Email me">✉</a>
<a href="https://twitter.com/stoyanstefanov" title="follow my tweets"
>♫</a
>
</p>
<p>
Keep up with web performance news via
<a href="rss.xml" title="RSS feed for Planet Performance">RSS</a>,
<a href="https://twitter.com/perfplanet" title="Follow perfplanet"
>@perfplanet</a
>, or
<a
href="https://www.facebook.com/webperfplanet"
title="Perfplanet on Facebook"
>
Facebook
</a>
</p>
</div>
<script src="perfplanet.js"></script>
</body>
</html>