Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 71b4394

Browse files
committed
Deploy census-instrumentation/census-instrumentation.github.io to github.com/census-instrumentation/census-instrumentation.github.io.git:master
0 parents  commit 71b4394

File tree

1,247 files changed

+304821
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,247 files changed

+304821
-0
lines changed

.dontdelete

Whitespace-only changes.

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
3+
<head>
4+
<link href="http://gmpg.org/xfn/11" rel="profile">
5+
<meta http-equiv="content-type" content="text/html; charset=utf-8">
6+
<meta name="generator" content="Hugo 0.30.2" />
7+
8+
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
10+
11+
<title>404 Page not found &middot; OpenCensus</title>
12+
13+
14+
<link rel="stylesheet" href="https://opencensus.io/css/print.css" media="print">
15+
<link rel="stylesheet" href="https://opencensus.io/css/poole.css">
16+
<link rel="stylesheet" href="https://opencensus.io/css/syntax.css">
17+
<link rel="stylesheet" href="https://opencensus.io/css/hyde.css">
18+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700">
19+
20+
21+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png">
22+
<link rel="shortcut icon" href="/favicon.png">
23+
24+
25+
<link href="https://opencensus.io/index.xml" rel="alternate" type="application/rss+xml" title="OpenCensus" />
26+
</head>
27+
28+
<body class=" ">
29+
<div class="sidebar">
30+
<div class="container sidebar-sticky">
31+
<div class="sidebar-about">
32+
<a href="https://opencensus.io/"><h1>OpenCensus</h1></a>
33+
<p class="lead">
34+
A stats collection and distributed tracing framework
35+
</p>
36+
</div>
37+
38+
<ul class="sidebar-nav">
39+
40+
<li><a href="https://github.com/census-instrumentation" class="fork"> Fork on GitHub</a></li>
41+
</ul>
42+
</div>
43+
</div>
44+
45+
<div class="content container">
46+
<h1>404: Page not found</h1>
47+
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="https://opencensus.io/">Head back home</a> to try finding it again.</p>
48+
<p class="edit"><a href="https://github.com/census-instrumentation/opencensus-website">Edit this page on GitHub</a></p>
49+
</div>
50+
51+
52+
</body>
53+
</html>

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
opencensus.io

apple-touch-icon-144-precomposed.png

8.74 KB
Loading

categories/index.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on OpenCensus</title>
5+
<link>https://opencensus.io/categories/</link>
6+
<description>Recent content in Categories on OpenCensus</description>
7+
<generator>Hugo -- gohugo.io</generator>
8+
<language>en-us</language>
9+
10+
<atom:link href="https://opencensus.io/categories/index.xml" rel="self" type="application/rss+xml" />
11+
12+
13+
</channel>
14+
</rss>

css/hyde.css

Lines changed: 263 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,263 @@
1+
/*
2+
* __ __
3+
* /\ \ /\ \
4+
* \ \ \___ __ __ \_\ \ __
5+
* \ \ _ `\/\ \/\ \ /'_` \ /'__`\
6+
* \ \ \ \ \ \ \_\ \/\ \_\ \/\ __/
7+
* \ \_\ \_\/`____ \ \___,_\ \____\
8+
* \/_/\/_/`/___/> \/__,_ /\/____/
9+
* /\___/
10+
* \/__/
11+
*
12+
* Designed, built, and released under MIT license by @mdo. Learn more at
13+
* https://github.com/poole/hyde.
14+
*/
15+
16+
17+
/*
18+
* Contents
19+
*
20+
* Global resets
21+
* Sidebar
22+
* Container
23+
* Reverse layout
24+
* Themes
25+
*/
26+
27+
28+
/*
29+
* Global resets
30+
*
31+
* Update the foundational and global aspects of the page.
32+
*/
33+
34+
html {
35+
font-family: "PT Sans", Helvetica, Arial, sans-serif;
36+
}
37+
@media (min-width: 48em) {
38+
html {
39+
font-size: 16px;
40+
}
41+
}
42+
@media (min-width: 58em) {
43+
html {
44+
font-size: 20px;
45+
}
46+
}
47+
48+
49+
/*
50+
* Sidebar
51+
*
52+
* Flexible banner for housing site name, intro, and "footer" content. Starts
53+
* out above content in mobile and later moves to the side with wider viewports.
54+
*/
55+
56+
.sidebar {
57+
text-align: center;
58+
padding: 2rem 1rem;
59+
color: #666;
60+
background-color: #f9f9f9;
61+
border-right: solid 1px #e5e5e5;
62+
}
63+
@media (min-width: 48em) {
64+
.sidebar {
65+
position: fixed;
66+
top: 0;
67+
left: 0;
68+
bottom: 0;
69+
width: 16rem;
70+
text-align: left;
71+
}
72+
}
73+
74+
/* Sidebar links */
75+
.sidebar a {
76+
color: #333;
77+
font-weight: bold;
78+
}
79+
80+
/* About section */
81+
.sidebar-about h1 {
82+
margin-top: 0;
83+
font-size: 2.0rem;
84+
}
85+
86+
/* Sidebar nav */
87+
.sidebar-nav {
88+
padding-left: 0;
89+
list-style: none;
90+
}
91+
.sidebar-nav-item {
92+
display: block;
93+
}
94+
a.sidebar-nav-item:hover,
95+
a.sidebar-nav-item:focus {
96+
text-decoration: underline;
97+
}
98+
.sidebar-nav-item.active {
99+
font-weight: bold;
100+
}
101+
102+
/* Sticky sidebar
103+
*
104+
* Add the `sidebar-sticky` class to the sidebar's container to affix it the
105+
* contents to the bottom of the sidebar in tablets and up.
106+
*/
107+
108+
@media (min-width: 48em) {
109+
.sidebar-sticky {
110+
position: absolute;
111+
right: 1rem;
112+
bottom: 1rem;
113+
left: 1rem;
114+
}
115+
}
116+
117+
118+
/* Container
119+
*
120+
* Align the contents of the site above the proper threshold with some margin-fu
121+
* with a 25%-wide `.sidebar`.
122+
*/
123+
124+
.content {
125+
padding-top: 4rem;
126+
padding-bottom: 4rem;
127+
}
128+
129+
@media (min-width: 48em) {
130+
.content {
131+
max-width: 38rem;
132+
margin-left: 18rem;
133+
margin-right: 2rem;
134+
}
135+
}
136+
137+
@media (min-width: 64em) {
138+
.content {
139+
margin-left: 20rem;
140+
margin-right: 4rem;
141+
}
142+
}
143+
144+
145+
/*
146+
* Reverse layout
147+
*
148+
* Flip the orientation of the page by placing the `.sidebar` on the right.
149+
*/
150+
151+
@media (min-width: 48em) {
152+
.layout-reverse .sidebar {
153+
left: auto;
154+
right: 0;
155+
}
156+
.layout-reverse .content {
157+
margin-left: 2rem;
158+
margin-right: 20rem;
159+
}
160+
}
161+
162+
@media (min-width: 64em) {
163+
.layout-reverse .content {
164+
margin-left: 4rem;
165+
margin-right: 22rem;
166+
}
167+
}
168+
169+
170+
171+
/*
172+
* Themes
173+
*
174+
* As of v1.1, Hyde includes optional themes to color the sidebar and links
175+
* within blog posts. To use, add the class of your choosing to the `body`.
176+
*/
177+
178+
/* Base16 (http://chriskempson.github.io/base16/#default) */
179+
180+
/* Red */
181+
.theme-base-08 .sidebar {
182+
background-color: #ac4142;
183+
}
184+
.theme-base-08 .content a,
185+
.theme-base-08 .related-posts li a:hover {
186+
color: #ac4142;
187+
}
188+
189+
/* Orange */
190+
.theme-base-09 .sidebar {
191+
background-color: #d28445;
192+
}
193+
.theme-base-09 .content a,
194+
.theme-base-09 .related-posts li a:hover {
195+
color: #d28445;
196+
}
197+
198+
/* Yellow */
199+
.theme-base-0a .sidebar {
200+
background-color: #f4bf75;
201+
}
202+
.theme-base-0a .content a,
203+
.theme-base-0a .related-posts li a:hover {
204+
color: #f4bf75;
205+
}
206+
207+
/* Green */
208+
.theme-base-0b .sidebar {
209+
background-color: #90a959;
210+
}
211+
.theme-base-0b .content a,
212+
.theme-base-0b .related-posts li a:hover {
213+
color: #90a959;
214+
}
215+
216+
/* Cyan */
217+
.theme-base-0c .sidebar {
218+
background-color: #75b5aa;
219+
}
220+
.theme-base-0c .content a,
221+
.theme-base-0c .related-posts li a:hover {
222+
color: #75b5aa;
223+
}
224+
225+
/* Blue */
226+
.theme-base-0d .sidebar {
227+
background-color: #6a9fb5;
228+
}
229+
.theme-base-0d .content a,
230+
.theme-base-0d .related-posts li a:hover {
231+
color: #6a9fb5;
232+
}
233+
234+
/* Magenta */
235+
.theme-base-0e .sidebar {
236+
background-color: #aa759f;
237+
}
238+
.theme-base-0e .content a,
239+
.theme-base-0e .related-posts li a:hover {
240+
color: #aa759f;
241+
}
242+
243+
/* Brown */
244+
.theme-base-0f .sidebar {
245+
background-color: #8f5536;
246+
}
247+
.theme-base-0f .content a,
248+
.theme-base-0f .related-posts li a:hover {
249+
color: #8f5536;
250+
}
251+
252+
.fork {
253+
display: block;
254+
height: 32px;
255+
background-image: url(/images/github.png);
256+
background-repeat: no-repeat;
257+
padding-left: 40px;
258+
}
259+
260+
.edit {
261+
font-size: .75rem;
262+
text-align: right;
263+
}

0 commit comments

Comments
 (0)