Skip to content

Commit

Permalink
Add missing attachments and extract some of them. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklan authored Jun 26, 2024
1 parent 9063f74 commit f89344f
Show file tree
Hide file tree
Showing 493 changed files with 18,137 additions and 257 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

[![Niklan.net website repository](https://img.shields.io/badge/website-blue?style=flat&logo=github&label=niklan.net)](https://github.com/Niklan/niklan.net)
[![Niklan.net content repository](https://img.shields.io/badge/content-f4f2ef?style=flat&logo=github&label=niklan.net)](https://github.com/Niklan/niklan.net-content)
[![Niklan.net examples repository](https://img.shields.io/badge/examples-yellow?style=flat&logo=github&label=niklan.net
)](https://github.com/Niklan/niklan.net-content)

<img src="./_handbook/logo.svg" alt="Niklan.net" width="128" align="right">

Expand Down
Binary file not shown.
Binary file not shown.
21 changes: 0 additions & 21 deletions blog/2013/01/09/drupal-7-windows-setup/index.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,6 @@ updated: '2024-05-25T00:00:00'
description: >-
Acquia Dev Desktop – это инструмент для быстрой и удобной разработки на Drupal
под операционную систему Windows.
attachments:
- name: add1.png
path: 'image/add1.png'
- name: add2.png
path: 'image/add2.png'
- name: add3.png
path: 'image/add3.png'
- name: add4.png
path: 'image/add4.png'
- name: add5.png
path: 'image/add5.png'
- name: add6.png
path: 'image/add6.png'
- name: add7.png
path: 'image/add7.png'
- name: add8.png
path: 'image/add8.png'
- name: add9.png
path: 'image/add9.png'
- name: add10.png
path: 'image/add10.png'
promo: 'image/druwin.jpg'
tags:
- Drupal
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ updated: '2024-05-25T00:00:00'
description: >-
Узнайте, как легко обновлять ядро Drupal 7, чтобы улучшить безопасность и
функциональность вашего сайта.
attachments:
- name: Screenshot_20160822_122606.png
path: 'image/Screenshot_20160822_122606.png'
promo: 'image/drupalupdate.png'
tags:
- Drupal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ attachments:
path: 'attachment/product.txt'
- name: 'Panels: Отображение подкатегорий и товаров'
path: 'attachment/panels_catalog.txt'
- name: 'Объяснение для комментария'
path: 'image/to_alexander.jpg'
promo: 'image/catalog_promo.png'
tags:
- Drupal
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* bg */
body {
background: #f1f1f1;
}

/* link_color */
a {
color: #2158ce;
}

/* page_bg */
#page-wrapper {
background: #ffffff;
}

/* menu_bg_color && menu_link_color */
#navigation ul.menu li a {
background: #ececec;
color: #000000;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?php

// Массив со всеми настройками.
$info = array();

// Оъявляем все переменные-цвета.
// Каждая переменная - поле для выбора цвета.
// Имеют вид: 'ключ' => 'метка'.
// Можно использовать функцию t().
$info['fields'] = array(
'bg' => 'Фон сайта',
'page_bg' => 'Фон страницы',
'link_color' => 'Цвет ссылок',
'menu_bg_color' => 'Цвет фона пунктов меню',
'menu_link_color' => 'Цвет ссылок пунктов-меню',
);

// Объявляем базовые цветовые схемы (предустановленные).
$info['schemes'] = array(
// Объявляем обязательную схему, которая будет использовать по-умолчанию, и
// от которой будет отталкиваться модуль Color.
'default' => array(
// Название цветовой схемы. Будет отображаться в списке всех схем.
'title' => 'Цветовая схема по-умолчанию',
// Задаем цвета для каждого ключа ($info['fields']).
// Все стандартные значения я беру из CSS.
// Цвет должен быть в HEX формате, начинаться с решетки и быть в нижнем
// регистре.
'colors' => array(
'bg' => '#f1f1f1',
'page_bg' => '#ffffff',
'link_color' => '#2158ce',
'menu_bg_color' => '#ececec',
'menu_link_color' => '#000000',
),
),
// Добавляем еще одну цветовую схему, но уже с нужными нам цветами.
'example' => array(
'title' => 'Пример дополнительной схемы',
// Делаем её полностью белой.
'colors' => array(
'bg' => '#ffffff',
'page_bg' => '#ffffff',
'link_color' => '#ffffff',
'menu_bg_color' => '#ffffff',
'menu_link_color' => '#ffffff',
),
),
);

/**
* Настройки ниже - пустышки. Они нужны модулю color, даже если мы их не
* используем в своей теме.
*/

// Путь указывается относительно корня темы.
$info['css'] = array('color/color.css');

// Файлы для копирования. (color.css - копируется автоматически)
$info['copy'] = array();

// Файлы которые будут использоваться в превью.
$info['preview_css'] = 'color/preview.css';
$info['preview_js'] = 'color/preview.js';
$info['preview_html'] = 'color/preview.html';

// Объявление градиентов.
$info['gradients'] = array();

// Координаты для заливки.
$info['fill'] = array();

// Координаты для нарезки изображения.
$info['slices'] = array();

// Базовая картинка.
$info['base_image'] = 'color/base.png';
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name = Пример Color-темы
description = <a href="http://niklan.net/" target="_blank">Пример Color-темы</a>
core = 7.x

; Регионы
regions[header] = Шапка
regions[content] = Контент
regions[footer] = Footer

; Стили
stylesheets[all][] = css/style.css
stylesheets[all][] = color/color.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
body {
font-size: 16px;
font-family: sans-serif;
background: #f1f1f1; /* bg */
}

h1,h2,h3,h4,h5,h6 {
color: #333333;
}

a {
color: #2158ce; /* link_color */
}

#page-wrapper {
width: 1000px;
margin: 0 auto;
padding: 20px;
border-radius: 5px;
border: 1px solid #dbdbdb;
background: #ffffff; /* page_bg */
}

#navigation ul.menu {
padding: 0;
margin: 0;
list-style: none;
}

#navigation ul.menu li {
display: inline;
}

#navigation ul.menu li a {
padding: 10px;
background: #ececec; /* menu_bg_color */
color: #000000; /* menu_link_color */
text-decoration: none;
border-radius: 3px;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
<?php print $page_top; ?>
<?php print $page; ?>
<?php print $page_bottom; ?>
</body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?php /*<div id="page">
<div id="site-menu">
<?php
$block = module_invoke('system', 'block_view', 'main-menu');
echo render($block['content']);
?>
</div>
<div id="main">
<?php print render($title_prefix); ?>
<?php if ($title): ?>
<h1 class="title" id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($title_suffix); ?>
<?php if ($tabs): ?>
<div class="tabs"><?php print render($tabs); ?></div>
<?php endif; ?>
<?php print $messages; ?>
<div id="main-content" class="region clearfix">
<?php print render($page['content']); ?>
</div>
</div>
<div id="footer">
<?php if ($page['footer']): ?>
<?php print render($page['footer']); ?>
<?php endif; ?>
</div>
</div>
*/?>
<div id="page-wrapper">
<header id="header">
<hgroup id="site-name-slogan">
<h1 id="site-name"><?php print $site_name; ?></h1>
<h2 id="site-slogan"><?php print $site_slogan; ?></h2>
</hgroup>

<nav id="navigation">
<?php
$block = module_invoke('system', 'block_view', 'main-menu');
echo render($block['content']);
?>
</nav>
</header>

<div id="content">
<?php if ($title): ?>
<h1 id="page-title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print render($page['content']); ?>
</div>

<footer id="footer">
&COPY; 2013
<?php print render($page['footer']); ?>
</footer>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
/**
* Использум template_preprocess_html().
*/
function color_theme_process_html(&$variables) {
if (module_exists('color')) {
_color_html_alter($variables);
}
}

/**
* Используем template_process_page().
*/
function color_theme_process_page(&$variables, $hook) {
if (module_exists('color')) {
_color_page_alter($variables);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name = Пример Color-темы
description = <a href="http://niklan.net/" target="_blank">Пример Color-темы</a>
core = 7.x

; Регионы
regions[header] = Шапка
regions[content] = Контент
regions[footer] = Footer

; Стили
stylesheets[all][] = css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
body {
font-size: 16px;
font-family: sans-serif;
background: #f1f1f1; /* bg */
}

h1,h2,h3,h4,h5,h6 {
color: #333333;
}

a {
color: #2158ce; /* link_color */
}

#page-wrapper {
width: 1000px;
margin: 0 auto;
padding: 20px;
border-radius: 5px;
border: 1px solid #dbdbdb;
background: #ffffff; /* page_bg */
}

#navigation ul.menu {
padding: 0;
margin: 0;
list-style: none;
}

#navigation ul.menu li {
display: inline;
}

#navigation ul.menu li a {
padding: 10px;
background: #ececec; /* menu_bg_color */
color: #000000; /* menu_link_color */
text-decoration: none;
border-radius: 3px;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<?php print $styles; ?>
<?php print $scripts; ?>
</head>
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
<?php print $page_top; ?>
<?php print $page; ?>
<?php print $page_bottom; ?>
</body>
</html>
Loading

0 comments on commit f89344f

Please sign in to comment.