Skip to content

Commit 58328df

Browse files
author
Marie Hogebrandt
committed
Cleaning up artefacts from merge errors
1 parent 2d7ecc6 commit 58328df

File tree

6 files changed

+14
-161
lines changed

6 files changed

+14
-161
lines changed

sthlm/Gruntfile.js

+11-28
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,8 @@ module.exports = function (grunt) {
2020

2121
// configurable paths
2222
var yeomanConfig = {
23-
<<<<<<< HEAD
24-
<<<<<<< HEAD
25-
app: 'www',
26-
dist: '_site',
27-
deploy: '../../PyladiesSthlm.github.io'
28-
=======
2923
app: 'src',
3024
dist: '_site'
31-
>>>>>>> 99253b1... Moving www to src
32-
=======
33-
app: 'src',
34-
dist: '_site'
35-
>>>>>>> 544ce1c... Correct Bower components location
3625
};
3726

3827
grunt.initConfig({
@@ -42,28 +31,18 @@ module.exports = function (grunt) {
4231
command: 'mynt gen -f src _site'
4332
},
4433
mynt: { // Target
45-
<<<<<<< HEAD
46-
<<<<<<< HEAD
47-
command: 'mynt gen -f www .tmp'
34+
command: 'mynt gen -f src .tmp'
4835
},
49-
deploy: {
36+
update: {
5037
command: [
51-
'git add --all',
52-
'git commit -m "Automatic commit from main repository"',
53-
'git push'
38+
'npm update',
39+
'bower update',
40+
'bundle update',
41+
'pip install -r "requirements.txt"'
5442
].join('&&'),
5543
options: {
56-
stdout: true,
57-
execOptions: {
58-
cwd: '<%= yeoman.deploy %>'
59-
}
44+
stdout: true
6045
}
61-
=======
62-
command: 'mynt gen -f src .tmp'
63-
>>>>>>> 99253b1... Moving www to src
64-
=======
65-
command: 'mynt gen -f src .tmp'
66-
>>>>>>> 544ce1c... Correct Bower components location
6746
}
6847
},
6948
watch: {
@@ -447,4 +426,8 @@ module.exports = function (grunt) {
447426
'test',
448427
'build'
449428
]);
429+
430+
grunt.registerTask('update', [
431+
'shell:update'
432+
]);
450433
};

sthlm/src/_assets/css/_sass/_app.scss

+2-30
Original file line numberDiff line numberDiff line change
@@ -54,50 +54,22 @@ body {
5454
}
5555

5656
.icons {
57-
<<<<<<< HEAD
5857
font-size: 20px;
58+
list-style: none;
59+
padding-left: 0;
5960

60-
<<<<<<< HEAD
61-
.icons > a, .icons > a:hover {
62-
display: inline-block;
63-
margin: 6px;
64-
text-decoration: none;
65-
=======
66-
> div {
67-
=======
68-
list-style: none;
69-
padding-left: 0;
7061
li {
71-
>>>>>>> c779ecb... Changing icons to list
7262
display: inline-block;
7363
margin: 6px;
7464
}
75-
>>>>>>> 5ee3b2f... Refactoring HTML to be more semantic
76-
}
77-
78-
<<<<<<< HEAD
79-
a.icon-twitter, a.icon-twitter:hover {
80-
color: #20ABD3;
81-
}
82-
83-
a.icon-facebook, a.icon-facebook:hover {
84-
color: #4B6498;
85-
}
86-
87-
a.icon-meetup, a.icon-meetup:hover {
88-
color: #E51938;
8965
}
9066

91-
a.icon-github-circled, a.icon-github-circled:hover {
92-
color: black;
93-
=======
9467
[class^="icon-"] {
9568
@extend %ir;
9669
&:before {
9770
font-size: 20px;
9871
@extend %social-icons;
9972
}
100-
>>>>>>> c779ecb... Changing icons to list
10173
}
10274

10375
/* Custom page footer */

sthlm/src/_assets/css/_sass/vendor/_bootstrap.scss

+1-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
*/
1010

1111
// Core variables and mixins
12+
@import "sass-bootstrap/lib/variables";
1213
@import "sass-bootstrap/lib/mixins";
1314

1415
// Reset
@@ -26,10 +27,6 @@
2627

2728
// Components
2829
@import "sass-bootstrap/lib/component-animations";
29-
<<<<<<< HEAD
30-
// @import "sass-bootstrap/lib/glyphicons";
31-
=======
32-
>>>>>>> 0b0509f... making a mixin of social media icons
3330
@import "sass-bootstrap/lib/dropdowns";
3431
@import "sass-bootstrap/lib/button-groups";
3532
@import "sass-bootstrap/lib/input-groups";

sthlm/src/_templates/header.html

-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414
<!-- Main CSS -->
1515
<link href="{{ get_asset('css/main.css') }}" rel="stylesheet">
1616

17-
<<<<<<< HEAD
18-
<!-- Fontello font-->
19-
<link href="{{ get_asset('css/fontello.css') }}" rel="stylesheet">
20-
21-
=======
22-
>>>>>>> f04e3b2... Adding bootstrap sass
2317
<!-- Favicons -->
2418
<link rel="shortcut icon" href="{{ get_asset('images/favicon.ico') }}" type="image/x-icon">
2519

sthlm/src/_templates/social-buttons.html

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
<div class="container social-buttons">
2-
<<<<<<< HEAD
3-
<div class="icons">
4-
<a target="_blank" href="https://twitter.com/PyladiesSthlm/" class="icon-twitter" title="twitter"></a>
5-
<a target="_blank" href="http://www.meetup.com/PyLadiesStockholm/" class="icon-meetup" title="meetup"></a>
6-
<a target="_blank" href="https://github.com/PyladiesSthlm/" class="icon-github-circled" title="github"></a>
7-
</div>
8-
=======
92
<ul class="icons">
103
<li>
114
<a target="_blank" href="https://twitter.com/PyladiesSthlm/">
@@ -23,5 +16,4 @@
2316
</a>
2417
</li>
2518
</ul>
26-
>>>>>>> c779ecb... Changing icons to list
2719
</div>

sthlm/www/_assets/css/_sass/_animation.scss

-85
This file was deleted.

0 commit comments

Comments
 (0)