Skip to content

Commit d9c2de9

Browse files
committed
Updated style
1 parent 70a3a84 commit d9c2de9

File tree

11 files changed

+27
-18
lines changed

11 files changed

+27
-18
lines changed

Gruntfile.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ module.exports = function (grunt) {
172172
watch: {
173173
concat: {
174174
files: '<%= project.src %>/js/{,*/}*.js',
175-
tasks: ['concat:dev', 'jshint']
175+
tasks: ['concat:dev', 'jshint', 'uglify']
176176
},
177177
sass: {
178178
files: '<%= project.src %>/scss/{,*/}*.{scss,sass}',
@@ -200,6 +200,7 @@ module.exports = function (grunt) {
200200
grunt.registerTask('default', [
201201
'sass:dev',
202202
'jshint',
203+
'uglify',
203204
'concat:dev',
204205
'concurrent:target'
205206
]);

_includes/header.html

+3-8
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1 class="sidebar__profile-name">
2828
</p>
2929
</div>
3030
<div class="sidebar__profile-social">
31-
<a href="//twitter.com/wyattjoh" class="twitter-follow-button" data-show-count="true">
31+
<a href="https://twitter.com/wyattjoh" class="twitter-follow-button" data-show-count="true">
3232
Follow @wyattjoh
3333
</a>
3434
</div>
@@ -45,21 +45,16 @@ <h1 class="sidebar__profile-name">
4545
</a>
4646
</li><!--
4747
--><li>
48-
<a href="//wyattjoh.ca/feed.xml">
48+
<a href="http://wyattjoh.ca/feed.xml">
4949
RSS
5050
</a>
5151
</li><!--
5252
--><li>
53-
<a href="//github.com/wyattjoh">
53+
<a href="https://github.com/wyattjoh">
5454
GitHub
5555
</a>
5656
</li>
5757
</ul>
5858
</nav>
59-
<div id="carbonads-container">
60-
<div class="carbonad">
61-
<div id="azcarbon"></div>
62-
</div>
63-
</div>
6459
</div>
6560
</div>

_layouts/default.html

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
</div>
66

77
<script src="js/scripts.min.js"></script>
8-
98
<script>
109
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1110
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -14,6 +13,5 @@
1413
ga('create', 'UA-47014539-3', 'auto');
1514
ga('send', 'pageview');
1615
</script>
17-
1816
</body>
1917
</html>

_layouts/post.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1 class="post__title">
1414
</a>
1515
{% endif %}
1616
<p>
17-
{{ page.date | date: "%B %d, %Y" }}
17+
{{ page.date | date: "%B %-d, %Y" }}
1818
</p>
1919
</div>
2020

assets/css/style.min.css

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.min.css.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/img/wyatt.jpg

2.13 KB
Loading

feed.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: nil
2+
layout: null
33
---
44
<?xml version="1.0" encoding="utf-8"?>
55
<feed xmlns="http://www.w3.org/2005/Atom">

sitemap.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
layout: none
2+
layout: null
33
---
44
<?xml version="1.0" encoding="UTF-8"?>
55
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

src/scss/partials/_colors.scss

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
$trumpet-blue: #007C96;
2+
3+
$sidebar-background-color: $trumpet-blue;
4+
$sidebar-font-color: white;

src/scss/partials/_sidebar.scss

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
@import "_colors.scss";
2+
13
.sidebar {
24
@include position(fixed, 0px 0 0px 0px);
35
text-align: center;
4-
background: #f5f6f5;
6+
background: $sidebar-background-color;
7+
color: $sidebar-font-color;
58
height: 100%;
69
width: 340px;
10+
11+
a {
12+
color: $sidebar-font-color;
13+
}
714
}
815
.sidebar__profile {
916
margin: 40px 0;

0 commit comments

Comments
 (0)