Skip to content

Commit aad1ac0

Browse files
committed
Merge pull request #24 from dwoznicki/feature-branch
Fix heading for all pages
2 parents 5a2e003 + 8e0ad91 commit aad1ac0

13 files changed

+56
-47
lines changed

aboutme.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="stylesheets/aboutme.css">
67
<meta charset="UTF-8">
78
<title>About me</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>

blog-index.html

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="stylesheets/blog.css">
67
<meta charset="utf-8">
78
<title>Blog Index</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>
@@ -21,15 +22,20 @@
2122
</nav>
2223
<section class="content">
2324
<section class="latest">
24-
<a href="http://dwoznicki.github.io/blog/arrays-hashes.html">
25-
<img src="imgs/ruby.png" alt="#"/>
26-
<h2>Dev Bootcamp Week 4: Arrays vs. Hashes</h2>
25+
<a href="http://dwoznicki.github.io/blog/enumerable-methods.html">
26+
<img src="imgs/map.png" alt="#"/>
27+
<h2>Dev Bootcamp Week 5: Enumerable#map</h2>
2728
<p>
28-
What are the differences between arrays and hashes?
29+
How to use the Enumerable#map method in Ruby.
2930
</p>
3031
</a>
3132
</section>
3233
<section class="older">
34+
<div>
35+
<a href="http://dwoznicki.github.io/blog/arrays-hashes.html">
36+
<img src="imgs/ruby.png" alt="#"/><h3>Arrays and Hashes</h3>
37+
</a>
38+
</div>
3339
<div>
3440
<a href="http://dwoznicki.github.io/blog/css-concepts.html">
3541
<img src="imgs/css_icon.png" alt="#"/><h3>Display: inline vs. block vs. inline block</h3>
@@ -40,11 +46,6 @@ <h2>Dev Bootcamp Week 4: Arrays vs. Hashes</h2>
4046
<img src="imgs/github-logo.png" alt="#"/><h3>Learning About git</h3>
4147
</a>
4248
</div>
43-
<div>
44-
<a href="http://dwoznicki.github.io/blog/">
45-
<img src="imgs/placeholder.png" alt="#"/><h3>Blog title#4</h3>
46-
</a>
47-
</div>
4849
<div>
4950
<a href="http://dwoznicki.github.io/blog/">
5051
<img src="imgs/placeholder.png" alt="#"/><h3>Blog title#5</h3>

blog-template.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<meta charset="utf-8">
78
<title>Blog Template</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>

blog/arrays-hashes.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<meta charset="utf-8">
78
<title>Arrays vs. Hashes</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>

blog/css-concepts.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<link rel="stylesheet" type="text/css" href="stylesheets/css-concepts.css">
78
<meta charset="utf-8">
89
<title>Week 2 Blog</title>
910
</head>
1011
<body>
11-
<div class="banner">
12-
<div class="bannerbox"></div>
13-
<p>danielWoznicki<span class="red">;</span></p>
12+
<div class="banner span-12-t span-12-d">
13+
<div class="bannerbox container"></div>
14+
<h1>danielWoznicki<span class="red">;</span></h1>
1415
</div>
1516
<nav class="navigation">
1617
<a href="http://dwoznicki.github.io">Home</a>

blog/enumerable-methods.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<meta charset="utf-8">
78
<title>The Enumerable#map Method</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>

blog/personal-data.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<link rel="stylesheet" type="text/css" href="stylesheets/personal-data.css">
78
<meta charset="utf-8">
89
<title>Monetizing Personal Data</title>
910
</head>
1011
<body>
11-
<div class="banner">
12-
<div class="bannerbox"></div>
13-
<p>danielWoznicki<span class="red">;</span></p>
12+
<div class="banner span-12-t span-12-d">
13+
<div class="bannerbox container"></div>
14+
<h1>danielWoznicki<span class="red">;</span></h1>
1415
</div>
1516
<nav class="navigation">
1617
<a href="http://dwoznicki.github.io">Home</a>

blog/t1-git-blog.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="../stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="../stylesheets/default.css">
56
<link rel="stylesheet" type="text/css" href="../stylesheets/blog.css">
67
<meta charset="utf-8">
78
<title>Blog Template</title>
89
</head>
910
<body>
10-
<div class="banner">
11-
<div class="bannerbox"></div>
12-
<p>danielWoznicki<span class="red">;</span></p>
11+
<div class="banner span-12-t span-12-d">
12+
<div class="bannerbox container"></div>
13+
<h1>danielWoznicki<span class="red">;</span></h1>
1314
</div>
1415
<nav class="navigation">
1516
<a href="http://dwoznicki.github.io">Home</a>

contact.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
56
<meta charset="UTF-8">
67
<title>Contact</title>
78
</head>
89
<body>
9-
<div class="banner">
10-
<div class="bannerbox"></div>
11-
<p>danielWoznicki<span class="red">;</span></p>
10+
<div class="banner span-12-t span-12-d">
11+
<div class="bannerbox container"></div>
12+
<h1>danielWoznicki<span class="red">;</span></h1>
1213
</div>
1314
<nav class="navigation">
1415
<a href="http://dwoznicki.github.io">Home</a>

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ <h1>danielWoznicki<span class="red">;</span></h1>
2222
<section class="content container row span-12-t span-12-d">
2323
<section class="latest col span-5-t span-5-d gutters-t">
2424
<a href="http://dwoznicki.github.io/blog/t1-git-blog.html">
25-
<img src="imgs/github-logo.png" alt="https://cdn.tutsplus.com/net/uploads/2013/08/github-collab-retina-preview.gif"/>
26-
<h2>Dev Bootcamp Week 1: Learning About git</h2>
25+
<img src="imgs/map.png" alt="#"/>
26+
<h2>Dev Bootcamp Week 5: Enumerable#map</h2>
2727
<p>
28-
A look into version control, git, and GitHub.
28+
How to use the Enumerable#map method in Ruby.
2929
</p>
3030
</a>
3131
</section>

projects-index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
56
<meta charset="UTF-8">
67
<title>Projects Index</title>
78
</head>
89
<body>
9-
<div class="banner">
10-
<div class="bannerbox"></div>
11-
<p>danielWoznicki<span class="red">;</span></p>
10+
<div class="banner span-12-t span-12-d">
11+
<div class="bannerbox container"></div>
12+
<h1>danielWoznicki<span class="red">;</span></h1>
1213
</div>
1314
<nav class="navigation">
1415
<a href="http://dwoznicki.github.io">Home</a>

resume.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<link rel="stylesheet" type="text/css" href="stylesheets/trg.css">
45
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
56
<meta charset="UTF-8">
67
<title>Resume</title>
78
</head>
89
<body>
9-
<div class="banner">
10-
<div class="bannerbox"></div>
11-
<p>danielWoznicki<span class="red">;</span></p>
10+
<div class="banner span-12-t span-12-d">
11+
<div class="bannerbox container"></div>
12+
<h1>danielWoznicki<span class="red">;</span></h1>
1213
</div>
1314
<nav class="navigation">
1415
<a href="http://dwoznicki.github.io">Home</a>

stylesheets/blog.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
.latest img {
1010
height: 250px;
1111
width: 250px;
12-
border: solid 2px #3c2f2f;
1312
float: none;
1413
margin: auto;
1514
display: block;
@@ -30,7 +29,6 @@
3029
height: 50px;
3130
width: 50px;
3231
float: left;
33-
border: solid 1px #3c2f2f;
3432
margin: 2%;
3533
}
3634
.older h3 {

0 commit comments

Comments
 (0)