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
<div class="section-item__photo"> | |
<img .../ > | |
</div> |
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> | |
<li><a id="about-link" class="" href="#">ABOUT</a></li> | |
<li><a id="events-link" href="#">EVENTS</a></li> | |
<li><a id="reviews-link" href="#">REVIEWS</a></li> | |
<li><a id="contact-link" href="#">CONTACT</a></li> | |
</ul> |
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
var fileinclude = require('gulp-file-include'), | |
gulp = require('gulp'); | |
gulp.task('fileinclude', function() { | |
gulp.src(['index.html']) | |
.pipe(fileinclude({ | |
prefix: '@@', | |
basepath: '@file' | |
})) | |
.pipe(gulp.dest('./')); |
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
<div class="circle"><span>Lorem ipsum</span></div> |
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
npm config set strict-ssl false |
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
<?php | |
$loop = new WP_Query( array( | |
'post_type' => 'Property', | |
'posts_per_page' => -1 | |
) | |
); | |
?> | |
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?> |
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
box-shadow: 0 5px 15px -4px rgba(0,0,0,.16) |
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
<body class="d-flex flex-column"> | |
<div id="page-content"> | |
<div class="container text-center"> | |
<div class="row justify-content-center"> | |
<div class="col-md-7"> | |
<h1 class="font-weight-light mt-4 text-white">Sticky Footer using Flexbox</h1> | |
<p class="lead text-white-50">Use just two Bootstrap 4 utility classes and three custom CSS rules and you will have a flexbox enabled sticky footer for your website!</p> | |
</div> | |
</div> | |
</div> |
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
Go to the Generic proxy tab in the settings, select HTTP/1.1 and enter the proxy details. The proxy you use must support HTTP/1.1 and the CONNECT method to work with FileZilla. |
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
RewriteEngine on | |
RewriteCond %{HTTP_HOST} ^www\.old-site\.ru$ [NC] | |
RewriteRule ^(.*)$ https://new-site.ru/$1 [L,R=301] | |
RewriteCond %{HTTP_HOST} ^old-site\.ru$ [NC] | |
RewriteRule ^(.*)$ https://new-site.ru/$1 [L,R=301] |