This repository was archived by the owner on Oct 7, 2022. It is now read-only.
File tree 11 files changed +51
-23
lines changed
11 files changed +51
-23
lines changed Original file line number Diff line number Diff line change 1
1
tasks :
2
2
- command : echo "gem: --no-document" >> ~/.gemrc && gem update && gem update --system && gem install bundler && bundler
3
+
4
+ ports :
5
+ - port : 4000
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- picklecore (0.13 .0 )
5
- jekyll (>= 3.5 , < 4.0 )
4
+ picklecore (0.14 .0 )
5
+ jekyll (>= 3.5 , < 5 )
6
6
jekyll-default-layout (= 0.1.4 )
7
7
jekyll-relative-links (= 0.6.1 )
8
8
51
51
mercenary (0.3.6 )
52
52
pathutil (0.16.2 )
53
53
forwardable-extended (~> 2.6 )
54
- public_suffix (4.0.1 )
54
+ public_suffix (4.0.2 )
55
55
rake (13.0.1 )
56
56
rb-fsevent (0.10.3 )
57
57
rb-inotify (0.10.1 )
Original file line number Diff line number Diff line change 1
1
require 'bundler'
2
2
3
- abort ( 'Please run rake using `bundler exec rake --trace --verbose `' ) unless ENV [ "BUNDLE_BIN_PATH" ]
3
+ abort ( 'Please run rake using `bundler exec rake`' ) unless ENV [ "BUNDLE_BIN_PATH" ]
4
4
5
5
task default : %w[ build ]
6
6
@@ -9,9 +9,3 @@ task :build do
9
9
sh "bundle exec gem build *.gemspec"
10
10
puts "End phase 'gem build'"
11
11
end
12
-
13
- task :push do
14
- puts "Start phase 'gem push'"
15
- sh "gem push ./*.gem"
16
- puts "End phase 'gem push'"
17
- end
Original file line number Diff line number Diff line change 1
- # 303f9f
1
+ # {% - if site. dark - %}24292e{% - else - %} 303f9f{% - endif - %}
Original file line number Diff line number Diff line change 4
4
{% include page-template/metadata.html pagename="You fell off my site!" %}
5
5
< link rel ="stylesheet " href ="/assets/css/error.css "> </ link >
6
6
</ head >
7
- < body onload =" document.body.style.backgroundColor = '#303f9f' " >
7
+ < body >
8
8
< div class ="error ">
9
9
< h1 class ="animated fadeInRightBig "> {{ site.errormessage | default: "Uh oh... You fell off our site!" }}</ h1 >
10
10
< p class ="animated delay fadeInLeftBig ">
Original file line number Diff line number Diff line change 5
5
6
6
body {
7
7
overflow : hidden;
8
- transition : background-color 1s ;
9
- background-color : white;
8
+ background-color : {%- include styling/ theme-color .css - %};
10
9
}
11
10
12
11
.error {
Original file line number Diff line number Diff line change 39
39
40
40
.card {
41
41
background : # fff ;
42
- color : {% - include styling / theme-col or . css - %} ;
42
+ color : # 303f9f ;
43
43
border-radius : 2px ;
44
44
height : 400px ;
45
45
margin : 1rem ;
81
81
.nav a {
82
82
padding : 8px ;
83
83
text-decoration : none;
84
- color : {% - include styling / theme-col or . css - %} ;
84
+ color : # 303f9f ;
85
85
font-size : 25px ;
86
86
display : block;
87
87
transition : 0.3s ;
@@ -94,7 +94,7 @@ table {
94
94
tr {
95
95
padding : 8px 8px 8px 32px ;
96
96
text-decoration : none;
97
- color : {% - include styling / theme-col or . css - %} ;
97
+ color : # 303f9f ;
98
98
font-size : 25px ;
99
99
transition : 0.3s ;
100
100
}
@@ -238,7 +238,7 @@ button {
238
238
vertical-align : middle;
239
239
background : {%- include styling/ theme-color .css - %};
240
240
color : # fff ;
241
- bor der: none ;
241
+ bor der: white 1px solid ;
242
242
position: relative;
243
243
height: 60px;
244
244
font- size: 1.6em;
@@ -261,7 +261,6 @@ button:after {
261
261
right : 0 ;
262
262
height : 2px ;
263
263
width : 0 ;
264
- background : {%- include styling/ theme-color .css - %};
265
264
transition : 400ms ease all;
266
265
}
267
266
Original file line number Diff line number Diff line change @@ -8,6 +8,5 @@ function toggleNav() {
8
8
document . getElementById ( "nav" ) . style . width = "265px" ;
9
9
navOpen = true ;
10
10
}
11
-
12
11
document . getElementById ( "nav-btn" ) . classList . toggle ( "open" ) ;
13
12
}
Original file line number Diff line number Diff line change 2
2
3
3
Gem ::Specification . new do |spec |
4
4
spec . name = "picklecore" . freeze
5
- spec . version = "0.13 .0"
5
+ spec . version = "0.14 .0"
6
6
spec . authors = [ "Reece Dunham" . freeze , "Param Thakkar" . freeze ]
7
7
spec . email = [ "[email protected] " . freeze ]
8
8
spec . summary = "A Jekyll theme built to create personal and small websites, but can easily scale!" . freeze
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
f . match ( %r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\. (txt|md)|$)))!i )
23
23
end
24
24
25
- spec . add_runtime_dependency "jekyll" , ">= 3.5" , "< 4.0 "
25
+ spec . add_runtime_dependency "jekyll" , ">= 3.5" , "< 5 "
26
26
spec . add_runtime_dependency "jekyll-default-layout" , "= 0.1.4"
27
27
spec . add_runtime_dependency "jekyll-relative-links" , "= 0.6.1"
28
28
Original file line number Diff line number Diff line change
1
+ # ___________ DO NOT MODIFY BETWEEN THESE LINES ___________
1
2
theme : picklecore
2
-
3
3
name : PickleCore Test Site
4
4
title : Example
5
+ # ___________ DO NOT MODIFY BETWEEN THESE LINES ___________
6
+
7
+ # you can edit this stuff though if testing:
8
+ github : rdilweb
9
+ dark : true
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : default-with-sidebar
3
+ title : EXAMPLE PAGE
4
+ ---
5
+
6
+ # Index
7
+
8
+ Hi!
9
+
10
+ ------
11
+
12
+ <div class =" cards " >
13
+ {% include components/card.html cardtitle="Hello" cardbody="from card world" %}
14
+ </div >
15
+
16
+ ------
17
+
18
+ <button >I am a BUTTON (big surprise right?)</button >
19
+
20
+ ------
21
+
22
+ * italics*
23
+ ** bold**
24
+
25
+ ------
26
+
27
+ {% for post in site.posts %}
28
+ <a href =" {{ post.url | relative }} " >I wrote a post once</a >
29
+ {% endfor %}
You can’t perform that action at this time.
0 commit comments