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
<li [[+wf.classes]]> | |
<a href="[[+wf.link]]" title="[[+wf.title]]" [[+wf.attributes]]>[[+wf.linktext]]</a> | |
[[+wf.wrapper]] | |
</li> |
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 id="MainMenu" [[+wf.classes]]>[[+wf.wrapper]]</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
[[$header]] | |
<!-- Promo BEGIN --> | |
<div class="widthController"> | |
<div id="Promo"> | |
<span></span> | |
<section> | |
<h2 class="font-large">Мебель для кухни на заказ</h2> | |
<p>Уже давно прошли и забыты те времена, когда все у всех было одинаковое. Люди стремятся к индивидуальности, желают получить лучшее, ищут идеальные решения для кухни своей мечты. Вкусы и требования у всех разные, и это лишний раз доказывает, что создать идеальный проект кухни невозможно, но дать клиенту все инструменты для заказа стильной кухни – это норма обслуживания в нашей сети.</p> | |
<p>Кухонный гарнитур должен быть индивидуален, эргономичен, красив, а о его надежности позаботятся наши специалисты.</p> |
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
<!--Footer BEGIN--> | |
<footer class="widthController font-small"> | |
<div> | |
<a href="mailto:[email protected]" target="_blank">Продвижение, создание<br> и поддержка сайтов,<br> ЗАО «АБМ».</a> | |
<div class="clear"></div> | |
</div> | |
</footer> | |
<!--Footer END--> | |
</body> | |
</html> |
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's BEGIN--> | |
<meta charset="[[++modx_charset]]"> | |
<!--META's END--> | |
<base href="[[++site_url]]" /> | |
<title>[[++site_name]]</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
<!doctype html> | |
<html lang="ru"> | |
<head> | |
<!--META's BEGIN--> | |
<meta charset="utf-8"> | |
<!--META's END--> | |
<title>HTML5</title> | |
<!--CSS BEGIN--> |
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
// write jQuery function | |
jQuery.fn.exists = function() { | |
return $(this).length; | |
} | |
// use the function | |
// if not exists run the getPreloader() | |
if(!$("#loader").exists()){ | |
getPreloader(); |
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 sortAjax(scheme, path, cat) { | |
var preloader = '<div id="parent">'+ | |
'<div id="child">'+ | |
'<img src="'+path+'/images/gif-loading.gif">'+ | |
'Подождите, идет загрузка...'+ | |
'</div>'+ | |
'</div>'; | |
switch(scheme) { |
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
<script> | |
jQuery(document).ready(function(){ | |
jQuery(".content-'.$l_postID.' a.amore").toggle( | |
function() { | |
jQuery(".content-'.$l_postID.' a.amore span").css({"background-position":"100% 50%"}); | |
}, | |
function() { | |
jQuery(".content-'.$l_postID.' a.amore span").css({"background-position":"0% 50%"}); |
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
import java.io.*; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Scanner; | |
import java.util.Set; | |
import static java.lang.System.out; | |
public class CountWords { | |