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"?> | |
| <resources> | |
| <color name="blue">#3F51B5</color> | |
| <color name="darkblue">#303F9F</color> | |
| <color name="tored">#Ff5252</color> | |
| <color name="grey">#757575</color> | |
| <color name="black">#000000</color> | |
| </resources> |
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
| package programtimmer; | |
| import jade.core.Agent; | |
| import jade.core.behaviours.TickerBehaviour; | |
| public class ticker extends TickerBehaviour { | |
| int waktu; | |
| public ticker(Agent a, long period, int waktu) { |
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 class="block-blog-post-2 post-side"> | |
| <div class="__image"><a href="#"> | |
| <div class="overlay-container"> | |
| <div class="cat">New!</div> | |
| <img src="{{$result->coverdir}}" alt="{{base_url('main/news/detail/'.$result->id.'/'.seo($result->title))}}"/> | |
| <div class="overlay-hover bgc-dark-o-4"></div> | |
| </div></a></div> | |
| <div class="__content"> | |
| <div class="__title"><a href="{{base_url('main/news/detail/'.$result->id.'/'.seo($result->title))}}" class="font-heading">{{$result->title}}</a></div> | |
| <p class="font-serif-italic color-gray __info section-block-small-p"><a href="#">{{tgl_indo($result->created_at)}}</a> / <a href="#">Admin</a> / <a href="#">{{$result->category->name}}</a></p> |
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 gulp = require("gulp"), | |
| sass = require("gulp-sass"), | |
| autoprefixer = require("gulp-autoprefixer"), | |
| browserSync = require("browser-sync"), | |
| webpack = require("webpack-stream"); | |
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
| gulp.task("sass", function () { | |
| return gulp.src("./resource/assets/sass/**/*.scss") | |
| .pipe(sass()) | |
| .pipe(autoprefixer()) | |
| .pipe(gulp.dest("./public/assets/css")) | |
| }) |
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
| gulp.task("serve", function(){ | |
| browserSync.init({ | |
| server: { | |
| baseDir: "./public/" | |
| } | |
| }) | |
| gulp.watch("./resource/assets/sass/**/*.scss",['sass']); | |
| gulp.watch("./public/assets/css/**/*.css").on("change",browserSync.reload) | |
| gulp.watch("./public/*.html").on("change", browserSync.reload) | |
| }) |
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
| module.exports ={ | |
| entry : { | |
| app : "./resource/assets/js/app.js" | |
| }, | |
| output: { | |
| path: __dirname + "/public/assets/js/", | |
| filename: "[name].js" | |
| }, | |
| module: { | |
| loaders: [ |
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
| gulp.task("script", function(){ | |
| return gulp.src("./resource/assets/js/app") | |
| .pipe(webpack(require("./webpack.config.js"))) | |
| .pipe(gulp.dest("./public/assets/js/")); | |
| }); |
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 gulp = require("gulp"), | |
| sass = require("gulp-sass"), | |
| autoprefixer = require("gulp-autoprefixer"), | |
| browserSync = require("browser-sync"), | |
| webpack = require("webpack-stream"); | |
| gulp.task("sass", function () { | |
| return gulp.src("./resource/assets/sass/**/*.scss") | |
| .pipe(sass()) | |
| .pipe(autoprefixer()) |
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
| const path = require( 'path' ); | |
| const webpack = require( 'webpack' ); | |
| const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
| module.exports = ( env, options ) => { | |
| return { | |
| entry: './src/block.js', | |
| output: { | |
| path: path.resolve( __dirname, 'build' ), |
OlderNewer