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
/** | |
* Генерация рандомной строки заданного размера от 4 до 10 | |
* @param length | |
* @returns {string} | |
*/ | |
export let randStr = (length = 4) => { | |
if (length < 4 && length > 10) { | |
length = 5; | |
} |
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
<?php if ( !empty($array) ): ?> | |
<?php $i=0; ?> | |
<div class="row"> | |
<?php foreach ( $array as $item): ?> | |
<div class="col-m*-3 col-s*-6"> | |
<p><content</p> | |
</div> | |
<?php $i++; ?> |