This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<configuration> | |
<system.webServer> | |
<directoryBrowse enabled="false" /> | |
<defaultDocument> | |
<files> | |
<clear /> | |
<add value="index.php" /> | |
<add value="Default.htm" /> | |
<add value="Default.asp" /> |
This file contains hidden or 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
$('.header__menu a').each(function () { | |
var location = window.location.href; | |
var link = this.href; | |
var result = location.match(link); | |
if(result != null) { | |
$(this).addClass('menu__links--active'); | |
} | |
}); |
This file contains hidden or 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 | |
step = 4, // Количество слайдов для показа | |
time = 4000, // Через какой время менять слайды | |
portfolio_slider = $('#portfolio_slider ._slider_elems'), //Слайдер | |
start = 0, //Текущий активный элемент | |
length = $('#portfolio_slider ._slider_elems > *').length //Количество слайдов | |
function portfolio_slider_function(){ | |
stop = start+step |
This file contains hidden or 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 id="pdopage"> | |
<div class="rows"> | |
[[!pdoPage? | |
&parents=`[[*id]]` | |
&element=`pdoResources` | |
&limit=`1` | |
&ajaxMode=`default` | |
&tpl=`resources` | |
&tplPageWrapper=`@INLINE | |
<nav aria-label="Page navigation example"> |
This file contains hidden or 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
<!-- og --> | |
<meta property="og:title" content="[[*pagetitle]]"> | |
<meta property="og:site_name" content="[[++site_name]]"> | |
<meta property="og:url" content="[[!++site_url]][[!*uri]]"> | |
<meta property="og:description" content="[[*description]]"> | |
<meta property="og:type" content="website"> | |
<meta property="og:image" content="[[++template_path]]img/logo.png"> | |
<!-- og x--> | |
<!-- schema --> |
This file contains hidden or 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 = 'title'; | |
$longtitle = 'longtitle'; | |
$introtext = 'introtext'; | |
$content = ''; | |
$template = ''; | |
$publishedon = DateTime::createFromFormat('Y-m-d', date('Y-m-d')); | |
$published = 0; | |
$parent = 31; |
This file contains hidden or 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
// _________________ // | |
// [ FormFullBleat ] | |
// Параметры | |
var | |
block_form = '#contact_form', //Силектор блока с формой | |
this_form = 'form' //Силектор формы | |
// Параметры x | |
// Обработка ввода данных |