Skip to content
This repository was archived by the owner on May 24, 2020. It is now read-only.

Commit a068bd2

Browse files
committed
Add basic foundation splash page with link to github repo
1 parent 106284c commit a068bd2

39 files changed

+18431
-104
lines changed

404.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<meta name="go-import" content="gonum.org/pkg/integrate git https://github.com/gonum/integrate">
5-
<meta name="go-import" content="gonum.org/pkg/matrix git https://github.com/gonum/matrix">
4+
<meta name="go-import" content="gonum.org/v1/ git https://github.com/gonum/gonum">
65
</head>
76

87
<body>

css/style.css

+16-91
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,21 @@
1-
/****** Typography ******/
2-
h1, h2, h3, h4, h5, h6 {
3-
font-family: 'Lora', times, serif;
4-
font-weight: normal;
5-
text-align: center;
6-
}
7-
h1 {
8-
font-size: 60px;
9-
padding-bottom: 30px;
10-
}
11-
h2 {
12-
font-size: 48px;
13-
padding-bottom: 20px;
14-
}
15-
h3 {
16-
font-size: 28px;
17-
}
18-
p, li {
19-
font-family: 'Open Sans', helvetica, arial, sans-serif;
20-
}
21-
p, li {
22-
font-size: 18px;
23-
line-height: 30px;
24-
}
25-
p.large{
26-
font-size: 24px;
27-
line-height: 35px;
28-
padding-bottom: 30px;
29-
}
30-
/****** Other Things ******/
31-
.button{
32-
background-color: #00aeef;
33-
}
1+
/*********** Landing Page ***********/
342

35-
a.button {
36-
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
37-
font-weight: bold;
38-
letter-spacing: .125em;
39-
text-transform: uppercase;
40-
color: #fff;
41-
}
42-
.center{
43-
text-align: center;
3+
body {
4+
background-color: #fcf8f4;
445
}
45-
/****** Header ******/
46-
header {
47-
padding: 40px 60px 30px 60px;
48-
}
49-
header ul, header h3 {
50-
display: inline;
51-
}
52-
header li {
53-
display: inline;
54-
font-family: 'Montserrat', Helvetica, Arial, sans-serif;
55-
font-size: 14px;
6+
7+
h1 {
8+
color: #666666;
9+
padding-top: 20%;
10+
font-family: 'Merriweather', serif;
11+
font-size: 3em; }
12+
p {
13+
padding-bottom: 1em;
14+
font-family: 'Open Sans', sans-serif;
15+
font-size: 1.15em;
16+
color: #666666; }
17+
.button {
5618
letter-spacing: .1em;
5719
text-transform: uppercase;
58-
color: #fff;
59-
padding-left: 25px;
60-
}
61-
62-
/****** Sections ******/
63-
section{
64-
padding: 35px 0 60px 0;
65-
border-bottom: solid 1px #231f20;
66-
}
67-
li {
68-
padding-bottom: 10px;
69-
}
70-
71-
/****** LOGO ******/
72-
73-
.logo{
74-
height:60px;
75-
width: 60px;
76-
}
77-
78-
/****** COLORS ******/
79-
.primary {
80-
color: #00aeef;
81-
}
82-
.primary-bg {
83-
background-color: #00aeef;
84-
}
85-
.white {
86-
color: #fff;
87-
}
88-
.white-bg{
89-
background-color: #fff;
90-
}
91-
.dark {
92-
color: #231f20;
93-
}
94-
.dark-bg{
95-
background-color: #231f20;
20+
font-size: .8em;
9621
}

humans.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/* Foundation was made by ZURB, an interaction design and design strategy firm in Campbell, CA */
2+
/* zurb.com */
3+
/* humanstxt.org */
4+
5+
/* SITE */
6+
Standards: HTML5, CSS3
7+
Components: jQuery, Orbit, Reveal
8+
Software: Sublime, Git, Sass

img/.gitkeep

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

index.html

+33-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
1-
<!DOCTYPE html>
2-
<html>
3-
<head>
4-
<meta name="go-import" content="gonum.org/pkg/integrate git https://github.com/gonum/integrate">
5-
<meta name="go-import" content="gonum.org/pkg/matrix git https://github.com/gonum/matrix">
6-
</head>
7-
8-
<body>
9-
Gonum: Consistent, composable, and comprehensible scientific code
10-
</body>
11-
</html>
1+
<!doctype html>
2+
<html class="no-js" lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta name="go-import" content="gonum.org/v1/ git https://github.com/gonum/gonum">
7+
<title>Foundation | Welcome</title>
8+
<link rel="stylesheet" href="css/foundation.css" />
9+
<link rel="stylesheet" href="css/style.css" />
10+
<link href="https://fonts.googleapis.com/css?family=Merriweather|Open+Sans" rel="stylesheet">
11+
<script src="js/vendor/modernizr.js"></script>
12+
</head>
13+
<body>
14+
15+
<div class="row">
16+
<div class="large-12 columns text-center">
17+
<h1>Gonum</h1>
18+
<p>Consistent, composable, and comprehensible scientific code</p>
19+
</div>
20+
</div>
21+
<div class="row">
22+
<div class="large-12 columns text-center center"><a href="https://github.com/gonum" target="_blank" class="button">View the Code</a></div>
23+
</div>
24+
25+
26+
27+
<script src="js/vendor/jquery.js"></script>
28+
<script src="js/foundation.min.js"></script>
29+
<script>
30+
$(document).foundation();
31+
</script>
32+
</body>
33+
</html>

old/404.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta name="go-import" content="gonum.org/pkg/integrate git https://github.com/gonum/integrate">
5+
<meta name="go-import" content="gonum.org/pkg/matrix git https://github.com/gonum/matrix">
6+
</head>
7+
8+
<body>
9+
Page not found
10+
</body>
11+
</html>

old/CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.gonum.org

0 commit comments

Comments
 (0)