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
const | |
gulp = require('gulp'), | |
pug = require('gulp-pug'), | |
sourcemaps = require('gulp-sourcemaps'), | |
concat = require('gulp-concat'), | |
cleanCSS = require('gulp-clean-css'), | |
mmq = require('gulp-merge-media-queries'), | |
babel = require('gulp-babel'), |
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
$base-font-size: 16px; | |
$heading-scale: 6; | |
@for $i from 1 through 6 { | |
h#{$i} { | |
font-size: $base-font-size + $heading-scale * (6 - $i); | |
} | |
} | |
// sizes 46px, 40px, 34px, 28px, 22px, 16px |
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
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:300,400,400italic,700,700italics"> |
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
<? | |
if ($_POST['who'] == 'robot') { | |
header('Refresh: 5; URL=https://www.site.ru'); | |
echo ('<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head> | |
<body><h1 style="color:red">Ошибка!</h1> | |
<p><b>Не отправлено,</b> так как вы являетесь роботом!<br> | |
Через 5 секунд вы вернетесь на главную страницу.</body></p>'); | |
} elseif ($_POST['mail'] == true) { |
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
<!doctype html> | |
<html lang='ru-RU' itemscope itemtype='http://schema.org/WebPage' prefix='og: http://ogp.me/ns#'> | |
<!-- <html lang='en-EN' itemscope itemtype='http://schema.org/WebPage' prefix='og: http://ogp.me/ns#'> --> | |
<head> | |
<meta charset='utf-8'> | |
<meta name='viewport' content='width=device-width, initial-scale=1, minimal-ui, shrink-to-fit=no' /> | |
<!-- <meta name="viewport" content="initial-scale=1.0,minimum-scale=1.0,maximum-scale=10.0,minimal-ui"> --> | |
<meta name='description' content=''> |
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
User-agent: * | |
Host: website.ru | |
Sitemap: https://site.ru/sitemap.xml |
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
Options All -ExecCGI -Indexes -Includes +FollowSymLinks | |
DirectoryIndex index.html | |
AddDefaultCharset utf-8 | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
# RewriteCond %{HTTPS} !on | |
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC] | |
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301] |
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
// !!! важен порядок положения параметров !!! | |
// все значения указываются без px | |
// Задаем стандартные js переменные canvas & element | |
const | |
canvas = document.getElementById('canvas'), // получаем указатель на холстрисования | |
elem = canvas.getContext('2d'); // получаем указатель на контекст | |
canvas.width = canvas.width; // очищение области - 1 вариант |
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
*, | |
::after, | |
::before { | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
html, | |
body { | |
height: 100%; |
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
<nav class="navbar navbar-expand-md navbar-dark bg-dark"> | |
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarDropdown" aria-controls="navbarDropdown" aria-expanded="false" aria-label="Toggle navigation"> | |
<span class="navbar-toggler-icon"></span> | |
</button> | |
<a class="navbar-brand" href="<?php echo esc_url( home_url('/') ); ?>"><?php bloginfo('name'); ?></a> | |
<div class="collapse navbar-collapse" id="navbarDropdown"> | |
<?php | |
wp_nav_menu( array( | |
'theme_location' => 'navbar', | |
'container' => false, |
NewerOlder