forked from AdaGold/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pipes - Bennett - Static Site #46
Open
bennettrahn
wants to merge
11
commits into
Ada-C8:master
Choose a base branch
from
bennettrahn:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
a635f91
copy set up stuff from meowspace, reformat to keep what I want, add w…
bennettrahn 3b9803a
finish basic layout
bennettrahn 7250db6
add my own photos rather than stock images.
bennettrahn 0f24892
make files for next pages, start framework html for about
bennettrahn 860364f
add some style to about
bennettrahn 9e3b540
add contact page and content for code-journal
bennettrahn 07666bc
try to get hover effects on photos - not working, giving up.
bennettrahn 1a5cb92
fix the mess I made with the portfolio section
bennettrahn 7a3de41
clean up some css stuff and git some basic nice layout for the sub pages
bennettrahn 574558d
fix code-journal to look not terrible
bennettrahn 33489fb
finish things finally even though it doesn't look good.
bennettrahn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>About</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css" integrity="sha256-sxzrkOPuwljiVGWbxViPJ14ZewXLJHFJDn0bv+5hsDY=" crossorigin="anonymous" /> | ||
<link href="../styles/main.css" rel="stylesheet"> | ||
<link href="../styles/about.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="clearfix"> | ||
<h2><a href="index.html"> Bennett Rahn </a></h2> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main class="clearfix"> | ||
<h1>About Me</h1> | ||
<div class = 'content'> | ||
<img alt="profile-w-drawing" src="../website_photos/profile_w_drawing.jpg"/> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</div> | ||
</main> | ||
<footer class = "clearfix"> | ||
<h4> © Bennett Rahn, 2017 </h4> | ||
<nav> | ||
<ul> | ||
<li><a href="#li"> LinkedIn </a></li> | ||
<li><a href="#ig"> Instagram </a> </li> | ||
<li><a href="#tw"> Twitter </a> </li> | ||
</ul> | ||
</nav> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Code Journal</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css" integrity="sha256-sxzrkOPuwljiVGWbxViPJ14ZewXLJHFJDn0bv+5hsDY=" crossorigin="anonymous" /> | ||
<link href="../styles/main.css" rel="stylesheet"> | ||
<link href="../styles/code-journal.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="clearfix"> | ||
<h2><a href="index.html"> Bennett Rahn </a></h2> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<h1>Code Journal</h1> | ||
<div class='content'> | ||
<article class = "post"> | ||
<h4> 1. </h4> | ||
<h3><a href="#thing1"> Ruby is fun! </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
|
||
<article class = "post"> | ||
<h4> 2. </h4> | ||
<h3><a href="#thing1"> CLI is hard and ugly... </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
<article class = "post"> | ||
<h4> 3. </h4> | ||
<h3><a href="#thing1"> CSS is hard! </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
<article class = "post"> | ||
<h4> 4. </h4> | ||
<h3><a href="#thing1"> Ada is pretty cool. </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
</div> | ||
</main> | ||
|
||
<footer class = "clearfix"> | ||
<h4> © Bennett Rahn, 2017 </h4> | ||
<nav> | ||
<ul> | ||
<li><a href="#li"> LinkedIn </a></li> | ||
<li><a href="#ig"> Instagram </a> </li> | ||
<li><a href="#tw"> Twitter </a> </li> | ||
</ul> | ||
</nav> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Contact</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css" integrity="sha256-sxzrkOPuwljiVGWbxViPJ14ZewXLJHFJDn0bv+5hsDY=" crossorigin="anonymous" /> | ||
<link href="../styles/main.css" rel="stylesheet"> | ||
<link href="../styles/contact.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="clearfix"> | ||
<h2><a href="index.html"> Bennett Rahn </a></h2> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main class="clearfix"> | ||
<h1>Get In Touch</h1> | ||
<div class='content'> | ||
<img alt="profile-w-drawing" src="../website_photos/lampost-into-mist.jpg"/> | ||
<div> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. | ||
</p> | ||
|
||
<ul> | ||
<li> <img src='https://cdn.worldvectorlogo.com/logos/gmail-icon.svg'/><a href="#email"> Email</a></li> | ||
<li> <img src='https://cdn0.iconfinder.com/data/icons/social-flat-rounded-rects/512/linkedin-256.png'/><a href="#fb"> LinkedIn </a></li> | ||
<li> <img src="https://instagram-brand.com/wp-content/uploads/2016/11/app-icon2.png"/> <a href="#ig"> Instagram </a> </li> | ||
<li> <img src='http://icons.iconarchive.com/icons/limav/flat-gradient-social/256/Twitter-icon.png' /><a href="#tw"> Twitter </a> </li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</main> | ||
<footer class = "clearfix"> | ||
<h4> © Bennett Rahn, 2017 </h4> | ||
<nav> | ||
<ul> | ||
<li><a href="#li"> LinkedIn </a></li> | ||
<li><a href="#ig"> Instagram </a> </li> | ||
<li><a href="#tw"> Twitter </a> </li> | ||
</ul> | ||
</nav> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Bennett Rahn</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.css" integrity="sha256-sxzrkOPuwljiVGWbxViPJ14ZewXLJHFJDn0bv+5hsDY=" crossorigin="anonymous" /> | ||
<link href="../styles/main.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header class="clearfix"> | ||
<h2><a href="index.html"> Bennett Rahn </a></h2> | ||
|
||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section id = "top_photo" class = "photo_back"> | ||
|
||
<h4> LIFESTYLE </h4> | ||
<h2> Art and Adventure in the Pacific NorthWest </h2> | ||
<h3> an exploration of my world, my backyard, and my imagination. </h3> | ||
</section> | ||
|
||
<section id = "who_are_i"> | ||
<img alt="Profile Photo" src="../website_photos/profile-pic.jpg"/> | ||
<div> | ||
<h2> Who Are I? </h2> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</div> | ||
</section> | ||
|
||
<section id = "three_things"> | ||
<article class = "post"> | ||
<h4> No. 1 </h4> | ||
<h3><a href="/code-journal.html"> Software Engineer </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
|
||
<article class = "post"> | ||
<h4> No. 2 </h4> | ||
<h3><a href="#thing1"> Artist </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
|
||
<article class = "post"> | ||
<h4> No. 3 </h4> | ||
<h3><a href="#thing1"> Teacher </a></h3> | ||
<p class="post_content"> | ||
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</article> | ||
</section> | ||
|
||
<section id = "portfolio" class = "clearfix"> | ||
<h3> Things I Like To Do </h3> | ||
|
||
<div id="pics-layout"> | ||
<img id = "left_photo" alt="Crescent Lake" src="../website_photos/hands-meet.jpg"/> | ||
|
||
<div id = "middle_three_photos"> | ||
<img alt="Garrett Drawing" src="../website_photos/garrett.jpg"/> | ||
<img alt="Lemon Cake" src="../website_photos/lemon-cake.jpg"/> | ||
<img alt="Heather Lake" src="../website_photos/heather-lake.jpg"/> | ||
</div> | ||
|
||
<img id = "right_photo" alt="Lauterbrunnen Valley" src="../website_photos/lauterbrunnen.jpg"/> | ||
|
||
</div> | ||
</section> | ||
|
||
|
||
|
||
<section id = "bottom_photo" class = "photo_back"> | ||
<h2> Big Quote about how important creativity is! </h2> | ||
</section> | ||
</main> | ||
<footer class = "clearfix"> | ||
<h4> © Bennett Rahn, 2017 </h4> | ||
<nav> | ||
<ul> | ||
<li><a href="#li"> LinkedIn </a></li> | ||
<li><a href="#ig"> Instagram </a> | ||
</li> | ||
<li><a href="#tw"> Twitter </a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html"> home </a></li> | ||
<li><a href="code-journal.html"> blog </a> </li> | ||
<li><a href="about.html"> about </a></li> | ||
<li><a href="contact.html"> contact </a></li> | ||
</ul> | ||
</nav> | ||
</footer> | ||
</body> | ||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
h1 { | ||
width: 100%; | ||
} | ||
|
||
.content { | ||
margin: ; | ||
flex-wrap: wrap; | ||
/*justify-content: flex-start;*/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
main ul { | ||
list-style: none; | ||
} | ||
|
||
main li { | ||
padding: 1em; | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
img { | ||
width: 1em; | ||
padding-right: 1em; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this declaration do anything, since it doesn't have a value?