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(window, document){ | |
'use strict'; | |
var $input = document.querySelector('[data-js="input"]'); | |
var $start = document.querySelector('[data-js="start"]'); | |
var $stop = document.querySelector('[data-js="stop"]'); | |
var $reset = document.querySelector('[data-js="reset"]'); | |
var counter = 0; | |
var crono; |
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
<?php foreach ($valor as $item) :?> | |
<td><?php print_r ($item); echo $item['opcao'] ?></td> | |
<?php endforeach; ?> |
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
.nav { | |
@include make-xs-column(12); | |
@include make-xs-column-offset(0); | |
@include make-sm-column(12); | |
@include make-sm-column-offset(0); | |
@media (min-width: 767px) { | |
position: fixed; | |
top: 0; | |
background-color: $primary-color; | |
z-index: 1; |
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> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
<h1>OLICXOLSKSF</h1> | |
<nav> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></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
<header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-md-12"> | |
Conteúdo | |
</div> | |
</div> | |
</div> | |
</header> |
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 gulp = require('gulp'); | |
var postcss = require('gulp-postcss'); | |
var precss = require('precss'); | |
var cssnext = require('postcss-cssnext'); | |
var cssnano = require('cssnano'); | |
var uglify = require('gulp-uglify'); | |
var browserSync = require('browser-sync'); | |
var reload = browserSync.reload; | |
gulp.task('sync', 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
git init | |
echo Change me > change-me | |
echo Delete me > delete-me | |
git add change-me delete-me | |
git commit -m initial | |
echo OK >> change-me | |
rm delete-me | |
echo Add me > add-me |
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
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var cssnano = require('gulp-cssnano'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var uglify = require('gulp-uglify'); | |
gulp.task('sass', 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
<?php if(have_rows('categoria_menu')) : while(have_rows('categoria_menu')) : the_row(); ?> | |
<div class="menu-item grid-8"> | |
<h2><?php the_sub_field('nome_categoria'); ?></h2> | |
<ul> | |
<?php if(have_rows('prato_menu')) : while(have_rows('prato_menu')) : the_row(); ?> | |
<li> | |
<span><sup>R$</sup><?php the_sub_field('preco_prato'); ?></span> | |
<div> | |
<h3><?php the_sub_field('nome_prato'); ?></h3> | |
<?php the_sub_field('descricao_prato'); ?> |
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
[ | |
{ | |
"key": "group_56b8d319d3e60", | |
"title": "Condominium", | |
"fields": [ | |
{ | |
"key": "field_56b8d324b77e4", | |
"label": "T\u00edtulo Condominium", | |
"name": "titulo-condominium", | |
"type": "text", |