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
❯ ./craft update craft | |
Fetching available updates ... done | |
Performing one update: | |
- craft 3.1.17.1 => 3.1.17.2 | |
Backup the database? (yes|no) [yes]:no | |
Skipping database backup. | |
Performing update with Composer ... error: An error occurred |
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
helpers do | |
def dev_pages(dir) | |
sitemap.resources.select do |resource| | |
resource.path.start_with?(dir) && resource.parent == nil && resource.data.archive != true && resource.data.published != false #&& resource.metadata[:options][:layout] == 'developments' | |
end.sort_by { |resource| resource.data.order || 9999 } | |
end | |
end |
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
@mixin placeholder($color) { | |
&::-webkit-input-placeholder { | |
color: $color; | |
} | |
&:-moz-placeholder { | |
color: $color; | |
} | |
&::-moz-placeholder { | |
color: $color; | |
} |
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
test |
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
ul#productNav { | |
font-size:1.0em; | |
/*font-weight:bold;*/ | |
margin:0 auto; | |
padding:0; | |
width:960px; | |
} | |
ul#productNav li { | |
background:none; | |
display:inline; |
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
#callToActions { | |
float: left; | |
padding: 0 10px 0 0; | |
width: 146px; | |
} | |
#callToActions h2 { | |
background: #FD57A9; | |
border-radius: 3px; | |
-moz-border-radius: 3px; | |
-webkit-border-radius: 3px; |