File tree 6 files changed +14
-161
lines changed
6 files changed +14
-161
lines changed Original file line number Diff line number Diff line change @@ -20,19 +20,8 @@ module.exports = function (grunt) {
20
20
21
21
// configurable paths
22
22
var yeomanConfig = {
23
- << < << << HEAD
24
- << < << << HEAD
25
- app: 'www' ,
26
- dist : '_site' ,
27
- deploy : '../../PyladiesSthlm.github.io'
28
- === = ===
29
23
app : 'src' ,
30
24
dist : '_site'
31
- >>> > >>> 99253 b1 ... Moving www to src
32
- === = ===
33
- app : 'src' ,
34
- dist : '_site'
35
- >>> > >>> 544 ce1c ... Correct Bower components location
36
25
} ;
37
26
38
27
grunt . initConfig ( {
@@ -42,28 +31,18 @@ module.exports = function (grunt) {
42
31
command : 'mynt gen -f src _site'
43
32
} ,
44
33
mynt : { // Target
45
- << < << << HEAD
46
- << < << << HEAD
47
- command : 'mynt gen -f www .tmp'
34
+ command : 'mynt gen -f src .tmp'
48
35
} ,
49
- deploy : {
36
+ update : {
50
37
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"'
54
42
] . join ( '&&' ) ,
55
43
options : {
56
- stdout : true ,
57
- execOptions : {
58
- cwd : '<%= yeoman.deploy %>'
59
- }
44
+ stdout : true
60
45
}
61
- === = ===
62
- command : 'mynt gen -f src .tmp'
63
- >>> > >>> 99253 b1 ... Moving www to src
64
- === = ===
65
- command : 'mynt gen -f src .tmp'
66
- >>> > >>> 544 ce1c ... Correct Bower components location
67
46
}
68
47
} ,
69
48
watch : {
@@ -447,4 +426,8 @@ module.exports = function (grunt) {
447
426
'test' ,
448
427
'build'
449
428
] ) ;
429
+
430
+ grunt . registerTask ( 'update' , [
431
+ 'shell:update'
432
+ ] ) ;
450
433
} ;
Original file line number Diff line number Diff line change @@ -54,50 +54,22 @@ body {
54
54
}
55
55
56
56
.icons {
57
- <<<<<<< HEAD
58
57
font-size : 20px ;
58
+ list-style : none ;
59
+ padding-left : 0 ;
59
60
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 ;
70
61
li {
71
- >>>>>>> c 779ecb ... Changing icons to list
72
62
display : inline-block ;
73
63
margin : 6px ;
74
64
}
75
- >>>>>>> 5ee 3b 2f ... 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 ;
89
65
}
90
66
91
- a .icon-github-circled , a .icon-github-circled :hover {
92
- color : black ;
93
- =======
94
67
[class ^= " icon-" ] {
95
68
@extend %ir ;
96
69
& :before {
97
70
font-size : 20px ;
98
71
@extend %social-icons ;
99
72
}
100
- >>>>>>> c 779ecb ... Changing icons to list
101
73
}
102
74
103
75
/* Custom page footer */
Original file line number Diff line number Diff line change 9
9
*/
10
10
11
11
// Core variables and mixins
12
+ @import " sass-bootstrap/lib/variables" ;
12
13
@import " sass-bootstrap/lib/mixins" ;
13
14
14
15
// Reset
26
27
27
28
// Components
28
29
@import " sass-bootstrap/lib/component-animations" ;
29
- <<<<<<< HEAD
30
- // @import "sass-bootstrap/lib/glyphicons";
31
- =======
32
- >>>>>>> 0b0509f... making a mixin of social media icons
33
30
@import " sass-bootstrap/lib/dropdowns" ;
34
31
@import " sass-bootstrap/lib/button-groups" ;
35
32
@import " sass-bootstrap/lib/input-groups" ;
Original file line number Diff line number Diff line change 14
14
<!-- Main CSS -->
15
15
< link href ="{{ get_asset('css/main.css') }} " rel ="stylesheet ">
16
16
17
- < < < < < < < HEAD
18
- <!-- Fontello font-->
19
- < link href ="{{ get_asset('css/fontello.css') }} " rel ="stylesheet ">
20
-
21
- =======
22
- > > > > > > > f04e3b2... Adding bootstrap sass
23
17
<!-- Favicons -->
24
18
< link rel ="shortcut icon " href ="{{ get_asset('images/favicon.ico') }} " type ="image/x-icon ">
25
19
Original file line number Diff line number Diff line change 1
1
< 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
- =======
9
2
< ul class ="icons ">
10
3
< li >
11
4
< a target ="_blank " href ="https://twitter.com/PyladiesSthlm/ ">
23
16
</ a >
24
17
</ li >
25
18
</ ul >
26
- > > > > > > > c779ecb... Changing icons to list
27
19
</ div >
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments