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
<FilesMatch ".(flv|gif|jpg|jpeg|png|ico|swf|js|css|pdf|woff|eot|ttf)$"> | |
Header set Cache-Control "max-age=2592000" | |
</FilesMatch> |
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
<form> | |
<input type="number" min="0" name="a" placeholder="a" /> | |
<input type="number" min="0" name="b" placeholder="b" /> | |
<input type="number" min="0" name="c" placeholder="c" /> | |
<input type="number" min="0" name="qt" placeholder="Количество коробок" /> | |
<div class="calc-result"></div> | |
<input type="button" name="send" value="Рассчитать" /> | |
</form> |
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
<meta name="viewport" content="width=1200px, initial-scale=0.3, maximum-scale=1.0, user-scalable=yes"> |
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
<!-- Chrome, Firefox OS and Opera --> | |
<meta name="theme-color" content="#4285f4"> | |
<!-- Windows Phone --> | |
<meta name="msapplication-navbutton-color" content="#4285f4"> | |
<!-- iOS Safari --> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
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
$(function() { | |
$('form').submit(function(e) { | |
var $form = $(this); | |
$.ajax({ | |
type: $form.attr('method'), | |
url: $form.attr('action'), | |
data: $form.serialize() | |
}).done(function() { | |
console.log('success'); | |
}).fail(function() { |
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
<title>[[*longtitle:isnot=``:then=`[[*longtitle]]`:else=`[[*pagetitle]]`]]</title> |
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 context; | |
window.addEventListener('load', function(){ | |
try { | |
window.AudioContext = window.AudioContext||window.webkitAudioContext; | |
context = new AudioContext(); | |
} | |
catch(e) { | |
alert('Ваш браузер не поддерживает Web Audio API'); | |
} | |
}, 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
UPDATE articles SET text = REPLACE(text, '8-927-123-45-67', '8-927-123-76-54') WHERE text LIKE '%8-927-123-45-67%' |
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
<title>[[*longtitle:default=`[[*pagetitle]]`]]</title> | |
<meta name="description" content="[[*description]]"> | |
<meta name="keywords" content="[[*keywords]]"> |
OlderNewer