├── public ├── favicon.ico ├── robots.txt ├── front │ ├── plugins │ │ ├── hover-dropdown │ │ │ ├── .gitignore │ │ │ └── bower.json │ │ ├── jquery.appear │ │ │ ├── .gitignore │ │ │ ├── AUTHORS.txt │ │ │ └── CHANGELOG │ │ ├── animate.css │ │ │ ├── .gitignore │ │ │ ├── bower.json │ │ │ ├── source │ │ │ │ ├── fading_entrances │ │ │ │ │ ├── fadeIn.css │ │ │ │ │ ├── fadeInUp.css │ │ │ │ │ ├── fadeInDown.css │ │ │ │ │ ├── fadeInLeft.css │ │ │ │ │ ├── fadeInRight.css │ │ │ │ │ ├── fadeInUpBig.css │ │ │ │ │ ├── fadeInDownBig.css │ │ │ │ │ ├── fadeInLeftBig.css │ │ │ │ │ └── fadeInRightBig.css │ │ │ │ ├── fading_exits │ │ │ │ │ ├── fadeOut.css │ │ │ │ │ ├── fadeOutUp.css │ │ │ │ │ ├── fadeOutDown.css │ │ │ │ │ ├── fadeOutLeft.css │ │ │ │ │ ├── fadeOutRight.css │ │ │ │ │ ├── fadeOutUpBig.css │ │ │ │ │ ├── fadeOutDownBig.css │ │ │ │ │ ├── fadeOutLeftBig.css │ │ │ │ │ └── fadeOutRightBig.css │ │ │ │ ├── attention_seekers │ │ │ │ │ ├── flash.css │ │ │ │ │ ├── bounce.css │ │ │ │ │ ├── shake.css │ │ │ │ │ ├── pulse.css │ │ │ │ │ ├── swing.css │ │ │ │ │ ├── tada.css │ │ │ │ │ └── wobble.css │ │ │ │ ├── sliders │ │ │ │ │ ├── slideOutUp.css │ │ │ │ │ ├── slideInDown.css │ │ │ │ │ ├── slideInLeft.css │ │ │ │ │ ├── slideInRight.css │ │ │ │ │ ├── slideOutLeft.css │ │ │ │ │ └── slideOutRight.css │ │ │ │ ├── lightspeed │ │ │ │ │ ├── lightSpeedOut.css │ │ │ │ │ └── lightSpeedIn.css │ │ │ │ ├── specials │ │ │ │ │ ├── rollIn.css │ │ │ │ │ ├── rollOut.css │ │ │ │ │ └── hinge.css │ │ │ │ ├── bouncing_exits │ │ │ │ │ ├── bounceOutUp.css │ │ │ │ │ ├── bounceOutDown.css │ │ │ │ │ ├── bounceOutLeft.css │ │ │ │ │ ├── bounceOutRight.css │ │ │ │ │ └── bounceOut.css │ │ │ │ ├── rotating_entrances │ │ │ │ │ ├── rotateIn.css │ │ │ │ │ ├── rotateInUpLeft.css │ │ │ │ │ ├── rotateInDownLeft.css │ │ │ │ │ ├── rotateInUpRight.css │ │ │ │ │ └── rotateInDownRight.css │ │ │ │ ├── rotating_exits │ │ │ │ │ ├── rotateOut.css │ │ │ │ │ ├── rotateOutDownLeft.css │ │ │ │ │ ├── rotateOutUpLeft.css │ │ │ │ │ ├── rotateOutUpRight.css │ │ │ │ │ └── rotateOutDownRight.css │ │ │ │ ├── bouncing_entrances │ │ │ │ │ ├── bounceIn.css │ │ │ │ │ ├── bounceInUp.css │ │ │ │ │ ├── bounceInDown.css │ │ │ │ │ ├── bounceInLeft.css │ │ │ │ │ └── bounceInRight.css │ │ │ │ └── flippers │ │ │ │ │ ├── flipOutX.css │ │ │ │ │ ├── flipOutY.css │ │ │ │ │ ├── flipInX.css │ │ │ │ │ └── flipInY.css │ │ │ └── package.json │ │ ├── jquery-cookie │ │ │ ├── .gitignore │ │ │ ├── bower.json │ │ │ └── test │ │ │ │ └── malformed_cookie.html │ │ ├── colorbox │ │ │ ├── colorbox.ai │ │ │ ├── content │ │ │ │ ├── daisy.jpg │ │ │ │ ├── homer.jpg │ │ │ │ ├── marylou.jpg │ │ │ │ ├── daisy@2x.jpg │ │ │ │ ├── ohoopee1.jpg │ │ │ │ ├── ohoopee2.jpg │ │ │ │ ├── ohoopee3.jpg │ │ │ │ └── ajax.html │ │ │ ├── example1 │ │ │ │ └── images │ │ │ │ │ ├── border.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── overlay.png │ │ │ │ │ ├── controls.png │ │ │ │ │ └── loading_background.png │ │ │ ├── example2 │ │ │ │ └── images │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── controls.png │ │ │ ├── example3 │ │ │ │ └── images │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── controls.png │ │ │ ├── example4 │ │ │ │ └── images │ │ │ │ │ ├── border1.png │ │ │ │ │ ├── border2.png │ │ │ │ │ └── loading.gif │ │ │ ├── example5 │ │ │ │ └── images │ │ │ │ │ ├── border.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── controls.png │ │ │ │ │ └── loading_background.png │ │ │ ├── i18n │ │ │ │ ├── jquery.colorbox-gl.js │ │ │ │ ├── jquery.colorbox-es.js │ │ │ │ ├── jquery.colorbox-ca.js │ │ │ │ ├── jquery.colorbox-zh-TW.js │ │ │ │ ├── jquery.colorbox-kr.js │ │ │ │ ├── jquery.colorbox-zh-CN.js │ │ │ │ ├── jquery.colorbox-ja.js │ │ │ │ ├── jquery.colorbox-et.js │ │ │ │ ├── jquery.colorbox-he.js │ │ │ │ ├── jquery.colorbox-id.js │ │ │ │ ├── jquery.colorbox-ar.js │ │ │ │ ├── jquery.colorbox-sv.js │ │ │ │ ├── jquery.colorbox-fi.js │ │ │ │ ├── jquery.colorbox-hu.js │ │ │ │ ├── jquery.colorbox-nl.js │ │ │ │ ├── jquery.colorbox-de.js │ │ │ │ ├── jquery.colorbox-sk.js │ │ │ │ ├── jquery.colorbox-da.js │ │ │ │ ├── jquery.colorbox-hr.js │ │ │ │ ├── jquery.colorbox-it.js │ │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ │ ├── jquery.colorbox-si.js │ │ │ │ ├── jquery.colorbox-cs.js │ │ │ │ ├── jquery.colorbox-no.js │ │ │ │ ├── jquery.colorbox-ru.js │ │ │ │ ├── jquery.colorbox-bg.js │ │ │ │ ├── jquery.colorbox-lv.js │ │ │ │ ├── jquery.colorbox-ro.js │ │ │ │ ├── jquery.colorbox-pl.js │ │ │ │ ├── jquery.colorbox-fr.js │ │ │ │ ├── jquery.colorbox-uk.js │ │ │ │ ├── jquery.colorbox-sr.js │ │ │ │ └── jquery.colorbox-tr.js │ │ │ └── bower.json │ │ ├── flex-slider │ │ │ ├── changelog.txt │ │ │ ├── demo │ │ │ │ ├── images │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── kitchen_adventurer_donut.jpg │ │ │ │ │ ├── kitchen_adventurer_lemon.jpg │ │ │ │ │ ├── kitchen_adventurer_caramel.jpg │ │ │ │ │ └── kitchen_adventurer_cheesecake_brownie.jpg │ │ │ │ ├── fonts │ │ │ │ │ └── webfonts │ │ │ │ │ │ ├── geo-medium │ │ │ │ │ │ ├── eot │ │ │ │ │ │ │ └── 1110FC_0.eot │ │ │ │ │ │ ├── ttf │ │ │ │ │ │ │ └── 1110FC_0.ttf │ │ │ │ │ │ └── woff │ │ │ │ │ │ │ └── 1110FC_0.woff │ │ │ │ │ │ ├── geo-regular │ │ │ │ │ │ ├── eot │ │ │ │ │ │ │ └── 11014B_0.eot │ │ │ │ │ │ ├── ttf │ │ │ │ │ │ │ └── 11014B_0.ttf │ │ │ │ │ │ └── woff │ │ │ │ │ │ │ └── 11014B_0.woff │ │ │ │ │ │ └── geo-semibold │ │ │ │ │ │ ├── eot │ │ │ │ │ │ └── style_169898.eot │ │ │ │ │ │ ├── ttf │ │ │ │ │ │ └── style_169898.ttf │ │ │ │ │ │ └── woff │ │ │ │ │ │ └── style_169898.woff │ │ │ │ └── js │ │ │ │ │ └── demo.js │ │ │ ├── images │ │ │ │ └── bg_play_pause.png │ │ │ └── fonts │ │ │ │ ├── flexslider-icon.eot │ │ │ │ ├── flexslider-icon.ttf │ │ │ │ └── flexslider-icon.woff │ │ ├── font-awesome │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── _backup v 4.0.3 │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ └── stacked.less │ │ │ │ └── scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── font-awesome.scss │ │ │ │ │ └── _stacked.scss │ │ │ ├── less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── core.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── font-awesome.less │ │ │ │ └── stacked.less │ │ │ └── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── _stacked.scss │ │ ├── bootstrap │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── _backup v3.0.2 │ │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── mixitup │ │ │ ├── bower.json │ │ │ └── .gitignore │ │ └── jquery.transit │ │ │ ├── bower.json │ │ │ └── component.json │ ├── images │ │ ├── team-7.jpg │ │ └── team-8.jpg │ └── fonts │ │ └── fonts │ │ ├── clip-font.eot │ │ ├── clip-font.ttf │ │ └── clip-font.woff ├── upload │ ├── berita │ │ ├── core │ │ ├── core.jpg │ │ ├── core.png │ │ ├── amd-ati.jpg │ │ ├── foxcon.jpg │ │ ├── iphone.png │ │ ├── welcome.jpg │ │ ├── yahoo.jpg │ │ ├── youtube.jpg │ │ ├── 18safari.jpg │ │ ├── 25chrome.jpg │ │ ├── 47firefox.jpg │ │ ├── Brush-256.png │ │ ├── linux-tux.jpg │ │ ├── nexus-one.jpg │ │ ├── tux-duduk.jpg │ │ ├── xbox-slim.jpg │ │ ├── Brush-2561.png │ │ ├── Laptop-256.png │ │ ├── iosa-award.jpg │ │ ├── ipad-egois.jpg │ │ ├── ipad-mikocok.jpg │ │ ├── mulai lapar.jpg │ │ ├── samsung-pad.jpg │ │ ├── Downloads-icon.png │ │ ├── motorola-droid.jpg │ │ ├── macbooknewair2-copy.jpg │ │ ├── xbox-slim-non-bajak.jpg │ │ ├── Glasses-Creature-icon.png │ │ └── 4_64746dd6e60c5caac6aee50bc810dda4.jpg │ ├── dewan-tu.jpg │ ├── besar │ │ ├── narto.jpg │ │ ├── php38CE.tmp │ │ ├── big-foto-1.jpg │ │ ├── big-foto-2.jpg │ │ ├── big-foto-3.jpg │ │ ├── big-foto-4.jpg │ │ ├── big-foto-5.jpg │ │ ├── big-foto-6.jpg │ │ ├── big-foto-7.jpg │ │ ├── big-foto-9.jpg │ │ ├── big-foto-10.jpg │ │ ├── big-foto-11.jpg │ │ ├── big-foto-12.jpg │ │ ├── big-foto-13.jpg │ │ ├── big-foto-14.jpg │ │ ├── big-foto-15.jpg │ │ ├── big-foto-16.jpg │ │ ├── big-foto-18.jpg │ │ ├── big-foto-20.jpg │ │ ├── big-foto-21.jpg │ │ ├── big-foto-22.jpg │ │ ├── 6625985_20140421120724.jpg │ │ ├── Assassin's Creed Unity - Logo 02.png │ │ └── 4_64746dd6e60c5caac6aee50bc810dda4.jpg │ ├── dewan-guru.jpg │ ├── file │ │ ├── 5y60r.jpg │ │ ├── images.jpg │ │ ├── 1-tetangga.jpg │ │ ├── codemirror_1.12.zip │ │ ├── 3583116_20130827012440.jpg │ │ └── 10849972_10150749783064953_8623355299779064592_n.jpg │ ├── kecil │ │ ├── narto.jpg │ │ ├── big-foto-2.jpg │ │ ├── big-foto-3.jpg │ │ ├── big-foto-4.jpg │ │ ├── big-foto-5.jpg │ │ ├── big-foto-6.jpg │ │ ├── big-foto-7.jpg │ │ ├── big-foto-9.jpg │ │ ├── big-foto-10.jpg │ │ ├── big-foto-11.jpg │ │ ├── big-foto-12.jpg │ │ ├── big-foto-13.jpg │ │ ├── big-foto-14.jpg │ │ ├── big-foto-15.jpg │ │ ├── big-foto-16.jpg │ │ ├── big-foto-17.jpg │ │ ├── big-foto-18.jpg │ │ ├── big-foto-20.jpg │ │ ├── big-foto-21.jpg │ │ ├── big-foto-22.jpg │ │ ├── small-foto-1.jpg │ │ ├── small-foto-10.jpg │ │ ├── small-foto-11.jpg │ │ ├── small-foto-12.jpg │ │ ├── small-foto-13.jpg │ │ ├── small-foto-14.jpg │ │ ├── small-foto-15.jpg │ │ ├── small-foto-16.jpg │ │ ├── small-foto-17.jpg │ │ ├── small-foto-18.jpg │ │ ├── small-foto-19.jpg │ │ ├── small-foto-2.jpg │ │ ├── small-foto-20.jpg │ │ ├── small-foto-21.jpg │ │ ├── small-foto-22.jpg │ │ ├── small-foto-3.jpg │ │ ├── small-foto-4.jpg │ │ ├── small-foto-5.jpg │ │ ├── small-foto-6.jpg │ │ ├── small-foto-7.jpg │ │ ├── small-foto-8.jpg │ │ ├── small-foto-9.jpg │ │ ├── small-foto-1_1.jpg │ │ ├── 6625985_20140421120724.jpg │ │ ├── Assassin's Creed Unity - Logo 02.png │ │ └── 4_64746dd6e60c5caac6aee50bc810dda4.jpg │ └── slider │ │ ├── head.jpg │ │ ├── head-.jpg │ │ ├── head2.jpg │ │ ├── head3.jpg │ │ ├── head4.jpg │ │ └── head5.jpg ├── assets │ ├── plugins │ │ ├── ckeditor │ │ │ ├── samples │ │ │ │ ├── assets │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ └── plugins │ │ │ │ │ └── htmlwriter │ │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ └── skins │ │ │ │ └── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ ├── hidpi │ │ │ │ ├── lock.png │ │ │ │ ├── close.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ │ │ └── lock-open.png │ │ ├── colorbox │ │ │ ├── colorbox.ai │ │ │ ├── content │ │ │ │ ├── daisy.jpg │ │ │ │ ├── homer.jpg │ │ │ │ ├── daisy@2x.jpg │ │ │ │ ├── marylou.jpg │ │ │ │ ├── ohoopee1.jpg │ │ │ │ ├── ohoopee2.jpg │ │ │ │ ├── ohoopee3.jpg │ │ │ │ └── ajax.html │ │ │ ├── example1 │ │ │ │ └── images │ │ │ │ │ ├── border.png │ │ │ │ │ ├── controls.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── overlay.png │ │ │ │ │ └── loading_background.png │ │ │ ├── example5 │ │ │ │ └── images │ │ │ │ │ ├── border.png │ │ │ │ │ ├── controls.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── loading_background.png │ │ │ ├── example2 │ │ │ │ └── images │ │ │ │ │ ├── controls.png │ │ │ │ │ └── loading.gif │ │ │ ├── example3 │ │ │ │ └── images │ │ │ │ │ ├── controls.png │ │ │ │ │ └── loading.gif │ │ │ ├── example4 │ │ │ │ └── images │ │ │ │ │ ├── border1.png │ │ │ │ │ ├── border2.png │ │ │ │ │ └── loading.gif │ │ │ └── i18n │ │ │ │ ├── jquery.colorbox-gl.js │ │ │ │ ├── jquery.colorbox-es.js │ │ │ │ ├── jquery.colorbox-kr.js │ │ │ │ ├── jquery.colorbox-zh-CN.js │ │ │ │ ├── jquery.colorbox-ja.js │ │ │ │ ├── jquery.colorbox-et.js │ │ │ │ ├── jquery.colorbox-he.js │ │ │ │ ├── jquery.colorbox-ar.js │ │ │ │ ├── jquery.colorbox-id.js │ │ │ │ ├── jquery.colorbox-fi.js │ │ │ │ ├── jquery.colorbox-hu.js │ │ │ │ ├── jquery.colorbox-sv.js │ │ │ │ ├── jquery.colorbox-nl.js │ │ │ │ ├── jquery.colorbox-de.js │ │ │ │ ├── jquery.colorbox-sk.js │ │ │ │ ├── jquery.colorbox-da.js │ │ │ │ ├── jquery.colorbox-hr.js │ │ │ │ ├── jquery.colorbox-it.js │ │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ │ ├── jquery.colorbox-cs.js │ │ │ │ ├── jquery.colorbox-no.js │ │ │ │ ├── jquery.colorbox-si.js │ │ │ │ ├── jquery.colorbox-bg.js │ │ │ │ ├── jquery.colorbox-lv.js │ │ │ │ ├── jquery.colorbox-ru.js │ │ │ │ ├── jquery.colorbox-ro.js │ │ │ │ ├── jquery.colorbox-fr.js │ │ │ │ ├── jquery.colorbox-pl.js │ │ │ │ ├── jquery.colorbox-uk.js │ │ │ │ └── jquery.colorbox-tr.js │ │ ├── font-awesome │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── _backup v 4.0.3 │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ └── stacked.less │ │ │ │ └── scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── font-awesome.scss │ │ │ │ │ └── _stacked.scss │ │ │ ├── less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── core.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── font-awesome.less │ │ │ │ └── stacked.less │ │ │ └── scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── font-awesome.scss │ │ │ │ └── _stacked.scss │ │ └── bootstrap │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── _backup v3.0.2 │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── fonts │ │ └── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ └── css │ │ └── print.css └── .htaccess ├── database ├── .gitignore ├── seeds │ ├── DatabaseSeeder.php │ └── TblKepegawaianTableSeeder.php └── migrations │ └── 2015_11_08_203915_create_uploads_table.php ├── storage ├── .gitignore ├── app │ └── .gitignore ├── logs │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .gitignore ├── app ├── Events │ └── Event.php ├── Commands │ └── Command.php ├── Http │ ├── Requests │ │ ├── Request.php │ │ └── AbsensiRequest.php │ ├── Controllers │ │ ├── Controller.php │ │ └── Admin │ │ │ └── DashboardController.php │ └── Middleware │ │ └── VerifyCsrfToken.php ├── Models │ ├── Upload.php │ ├── Pengumuman.php │ ├── Berita.php │ ├── Agenda.php │ ├── Data.php │ ├── Foto.php │ ├── Jawaban.php │ ├── Pegawai.php │ └── Siswa.php ├── Providers │ └── ConfigServiceProvider.php └── Console │ └── Kernel.php ├── config ├── breadcrumbs.php └── image.php ├── package.json ├── phpspec.yml ├── resources ├── views │ ├── emails │ │ └── password.blade.php │ ├── guru │ │ └── templates │ │ │ ├── footer.blade.php │ │ │ └── breadcrumbs.blade.php │ ├── backend │ │ └── templates │ │ │ ├── footer.blade.php │ │ │ └── breadcrumbs.blade.php │ └── home.blade.php ├── assets │ └── less │ │ ├── bootstrap │ │ ├── mixins │ │ │ ├── center-block.less │ │ │ ├── text-emphasis.less │ │ │ ├── size.less │ │ │ ├── background-variant.less │ │ │ ├── opacity.less │ │ │ ├── text-overflow.less │ │ │ ├── tab-focus.less │ │ │ ├── labels.less │ │ │ ├── resize.less │ │ │ ├── progress-bar.less │ │ │ ├── nav-divider.less │ │ │ ├── reset-filter.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── responsive-visibility.less │ │ │ ├── pagination.less │ │ │ ├── border-radius.less │ │ │ ├── panels.less │ │ │ ├── list-group.less │ │ │ └── hide-text.less │ │ └── wells.less │ │ └── app.less └── lang │ └── en │ └── pagination.php ├── tests ├── ExampleTest.php └── TestCase.php ├── bootstrap └── environment.php ├── nbproject └── project.xml ├── gulpfile.js └── server.php /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /storage/.gitignore: -------------------------------------------------------------------------------- 1 | laravel.log -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/front/plugins/hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/front/plugins/jquery.appear/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | .env 4 | /nbproject/private/ -------------------------------------------------------------------------------- /public/front/plugins/animate.css/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | node_modules/ 3 | .DS_Store -------------------------------------------------------------------------------- /public/front/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /public/upload/berita/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/core -------------------------------------------------------------------------------- /public/upload/dewan-tu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/dewan-tu.jpg -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | 'backend/templates/breadcrumbs', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "gulp": "^3.8.8", 4 | "laravel-elixir": "*" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- 1 | suites: 2 | main: 3 | namespace: App 4 | psr4_prefix: App 5 | src_path: app -------------------------------------------------------------------------------- /public/upload/berita/18safari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/18safari.jpg -------------------------------------------------------------------------------- /public/upload/berita/25chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/25chrome.jpg -------------------------------------------------------------------------------- /public/upload/berita/47firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/47firefox.jpg -------------------------------------------------------------------------------- /public/upload/berita/Brush-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/Brush-256.png -------------------------------------------------------------------------------- /public/upload/berita/linux-tux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/linux-tux.jpg -------------------------------------------------------------------------------- /public/upload/berita/nexus-one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/nexus-one.jpg -------------------------------------------------------------------------------- /public/upload/berita/tux-duduk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/tux-duduk.jpg -------------------------------------------------------------------------------- /public/upload/berita/xbox-slim.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/xbox-slim.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-1.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-2.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-3.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-4.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-5.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-6.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-7.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-9.jpg -------------------------------------------------------------------------------- /public/upload/file/1-tetangga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/file/1-tetangga.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-2.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-3.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-4.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-5.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-6.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-7.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-9.jpg -------------------------------------------------------------------------------- /resources/views/emails/password.blade.php: -------------------------------------------------------------------------------- 1 | Click here to reset your password: {{ url('password/reset/'.$token) }} 2 | -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /public/upload/berita/Brush-2561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/Brush-2561.png -------------------------------------------------------------------------------- /public/upload/berita/Laptop-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/Laptop-256.png -------------------------------------------------------------------------------- /public/upload/berita/iosa-award.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/iosa-award.jpg -------------------------------------------------------------------------------- /public/upload/berita/ipad-egois.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/ipad-egois.jpg -------------------------------------------------------------------------------- /public/upload/berita/ipad-mikocok.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/ipad-mikocok.jpg -------------------------------------------------------------------------------- /public/upload/berita/mulai lapar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/mulai lapar.jpg -------------------------------------------------------------------------------- /public/upload/berita/samsung-pad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/samsung-pad.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-10.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-11.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-12.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-13.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-14.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-15.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-16.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-18.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-20.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-21.jpg -------------------------------------------------------------------------------- /public/upload/besar/big-foto-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/big-foto-22.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-10.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-11.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-12.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-13.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-14.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-15.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-16.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-17.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-18.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-20.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-21.jpg -------------------------------------------------------------------------------- /public/upload/kecil/big-foto-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/big-foto-22.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-1.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-10.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-11.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-12.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-13.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-14.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-15.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-16.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-17.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-18.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-19.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-2.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-20.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-21.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-22.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-3.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-4.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-5.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-6.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-7.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-8.jpg -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-9.jpg -------------------------------------------------------------------------------- /public/assets/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /public/assets/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /public/front/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /public/front/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /public/front/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /public/upload/berita/Downloads-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/Downloads-icon.png -------------------------------------------------------------------------------- /public/upload/berita/motorola-droid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/motorola-droid.jpg -------------------------------------------------------------------------------- /public/upload/file/codemirror_1.12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/file/codemirror_1.12.zip -------------------------------------------------------------------------------- /public/upload/kecil/small-foto-1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/small-foto-1_1.jpg -------------------------------------------------------------------------------- /public/assets/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/colorbox.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/colorbox.ai -------------------------------------------------------------------------------- /public/front/plugins/colorbox/colorbox.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/colorbox.ai -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/changelog.txt: -------------------------------------------------------------------------------- 1 | FLEXSLIDER CHANGELOG 2 | 3 | 2013.02.15 - Version 2.0 4 | * Added changelog.txt -------------------------------------------------------------------------------- /public/upload/berita/macbooknewair2-copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/macbooknewair2-copy.jpg -------------------------------------------------------------------------------- /public/upload/berita/xbox-slim-non-bajak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/xbox-slim-non-bajak.jpg -------------------------------------------------------------------------------- /public/front/plugins/animate.css/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animate.css", 3 | "version": "3.0.0", 4 | "main": "./animate.css" 5 | } 6 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/daisy.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/homer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/homer.jpg -------------------------------------------------------------------------------- /public/upload/berita/Glasses-Creature-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/Glasses-Creature-icon.png -------------------------------------------------------------------------------- /public/upload/besar/6625985_20140421120724.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/6625985_20140421120724.jpg -------------------------------------------------------------------------------- /public/upload/file/3583116_20130827012440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/file/3583116_20130827012440.jpg -------------------------------------------------------------------------------- /public/upload/kecil/6625985_20140421120724.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/6625985_20140421120724.jpg -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | compiled.php 4 | services.json 5 | events.scanned.php 6 | routes.scanned.php 7 | -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/daisy.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/homer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/homer.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/marylou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/marylou.jpg -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/daisy@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/daisy@2x.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/marylou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/marylou.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/ohoopee1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/ohoopee1.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/ohoopee2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/ohoopee2.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/ohoopee3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/content/ohoopee3.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/daisy@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/daisy@2x.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/ohoopee1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/ohoopee1.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/ohoopee2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/ohoopee2.jpg -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/ohoopee3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/content/ohoopee3.jpg -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/demo/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/demo/images/logo.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example1/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example1/images/border.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example5/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example5/images/border.png -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example1/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example1/images/border.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example1/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example1/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example1/images/overlay.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example2/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example2/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example3/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example3/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example4/images/border1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example4/images/border1.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example4/images/border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example4/images/border2.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example4/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example4/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example5/images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example5/images/border.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example5/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example5/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/images/bg_play_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/images/bg_play_pause.png -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/upload/besar/Assassin's Creed Unity - Logo 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/Assassin's Creed Unity - Logo 02.png -------------------------------------------------------------------------------- /public/upload/kecil/Assassin's Creed Unity - Logo 02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/Assassin's Creed Unity - Logo 02.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example1/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example1/images/controls.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example1/images/loading.gif -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example1/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example1/images/overlay.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example2/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example2/images/controls.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example2/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example2/images/loading.gif -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example3/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example3/images/controls.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example3/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example3/images/loading.gif -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example4/images/border1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example4/images/border1.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example4/images/border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example4/images/border2.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example4/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example4/images/loading.gif -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example5/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example5/images/controls.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example5/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example5/images/loading.gif -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example1/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example1/images/controls.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example2/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example2/images/controls.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example3/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example3/images/controls.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example5/images/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example5/images/controls.png -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/fonts/flexslider-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/fonts/flexslider-icon.eot -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/fonts/flexslider-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/fonts/flexslider-icon.ttf -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/fonts/flexslider-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/fonts/flexslider-icon.woff -------------------------------------------------------------------------------- /public/upload/berita/4_64746dd6e60c5caac6aee50bc810dda4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/berita/4_64746dd6e60c5caac6aee50bc810dda4.jpg -------------------------------------------------------------------------------- /public/upload/besar/4_64746dd6e60c5caac6aee50bc810dda4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/besar/4_64746dd6e60c5caac6aee50bc810dda4.jpg -------------------------------------------------------------------------------- /public/upload/kecil/4_64746dd6e60c5caac6aee50bc810dda4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/kecil/4_64746dd6e60c5caac6aee50bc810dda4.jpg -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example1/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example1/images/loading_background.png -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/example5/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/colorbox/example5/images/loading_background.png -------------------------------------------------------------------------------- /public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example1/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example1/images/loading_background.png -------------------------------------------------------------------------------- /public/front/plugins/colorbox/example5/images/loading_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/colorbox/example5/images/loading_background.png -------------------------------------------------------------------------------- /public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/font-awesome/_backup v 4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | 0% {opacity: 0;} 3 | 100% {opacity: 1;} 4 | } 5 | 6 | .fadeIn { 7 | animation-name: fadeIn; 8 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | 0% {opacity: 1;} 3 | 100% {opacity: 0;} 4 | } 5 | 6 | .fadeOut { 7 | animation-name: fadeOut; 8 | } -------------------------------------------------------------------------------- /public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/_backup v 4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/upload/file/10849972_10150749783064953_8623355299779064592_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/upload/file/10849972_10150749783064953_8623355299779064592_n.jpg -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/demo/images/kitchen_adventurer_donut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/demo/images/kitchen_adventurer_donut.jpg -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/demo/images/kitchen_adventurer_lemon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/demo/images/kitchen_adventurer_lemon.jpg -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/front/plugins/mixitup/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mixitup", 3 | "version": "1.5.5", 4 | "main": "jquery.mixitup.min.js", 5 | "dependencies": { 6 | "jquery": ">=1.4" 7 | } 8 | } -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/demo/images/kitchen_adventurer_caramel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/flex-slider/demo/images/kitchen_adventurer_caramel.jpg -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | 0%, 50%, 100% {opacity: 1;} 3 | 25%, 75% {opacity: 0;} 4 | } 5 | 6 | .flash { 7 | animation-name: flash; 8 | } -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/_backup v 4.0.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/front/plugins/font-awesome/_backup v 4.0.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/front/plugins/mixitup/.gitignore: -------------------------------------------------------------------------------- 1 | # OS generated files # 2 | ###################### 3 | .DS_Store 4 | .DS_Store? 5 | ._* 6 | .Spotlight-V100 7 | .Trashes 8 | Icon? 9 | ehthumbs.db 10 | Thumbs.db -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | -------------------------------------------------------------------------------- /resources/assets/less/app.less: -------------------------------------------------------------------------------- 1 | @import "bootstrap/bootstrap"; 2 | 3 | @btn-font-weight: 300; 4 | @font-family-sans-serif: "Roboto", Helvetica, Arial, sans-serif; 5 | 6 | body, label, .checkbox label { 7 | font-weight: 300; 8 | } 9 | -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /public/assets/plugins/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syiewa/l5-sis/HEAD/public/assets/plugins/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /public/front/plugins/jquery.appear/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Andrey Sidorov 2 | Juan Hoyos 3 | Boris Nadion 4 | fhackenberger 5 | hayesgm 6 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/attention_seekers/bounce.css: -------------------------------------------------------------------------------- 1 | @keyframes bounce { 2 | 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 3 | 40% {transform: translateY(-30px);} 4 | 60% {transform: translateY(-15px);} 5 | } 6 | 7 | .bounce { 8 | animation-name: bounce; 9 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutUp { 2 | 0% { 3 | transform: translateY(0); 4 | } 5 | 6 | 100% { 7 | opacity: 0; 8 | transform: translateY(-2000px); 9 | } 10 | } 11 | 12 | .slideOutUp { 13 | animation-name: slideOutUp; 14 | } -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/attention_seekers/shake.css: -------------------------------------------------------------------------------- 1 | @keyframes shake { 2 | 0%, 100% {transform: translateX(0);} 3 | 10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 4 | 20%, 40%, 60%, 80% {transform: translateX(10px);} 5 | } 6 | 7 | .shake { 8 | animation-name: shake; 9 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInDown { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(-2000px); 5 | } 6 | 7 | 100% { 8 | transform: translateY(0); 9 | } 10 | } 11 | 12 | .slideInDown { 13 | animation-name: slideInDown; 14 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInLeft { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(-2000px); 5 | } 6 | 7 | 100% { 8 | transform: translateX(0); 9 | } 10 | } 11 | 12 | .slideInLeft { 13 | animation-name: slideInLeft; 14 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInRight { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(2000px); 5 | } 6 | 7 | 100% { 8 | transform: translateX(0); 9 | } 10 | } 11 | 12 | .slideInRight { 13 | animation-name: slideInRight; 14 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutLeft { 2 | 0% { 3 | transform: translateX(0); 4 | } 5 | 6 | 100% { 7 | opacity: 0; 8 | transform: translateX(-2000px); 9 | } 10 | } 11 | 12 | .slideOutLeft { 13 | animation-name: slideOutLeft; 14 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/sliders/slideOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutRight { 2 | 0% { 3 | transform: translateX(0); 4 | } 5 | 6 | 100% { 7 | opacity: 0; 8 | transform: translateX(2000px); 9 | } 10 | } 11 | 12 | .slideOutRight { 13 | animation-name: slideOutRight; 14 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUp { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(20px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateY(0); 10 | } 11 | } 12 | 13 | .fadeInUp { 14 | animation-name: fadeInUp; 15 | } -------------------------------------------------------------------------------- /resources/views/backend/templates/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUp { 2 | 0% { 3 | opacity: 1; 4 | transform: translateY(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateY(-20px); 10 | } 11 | } 12 | 13 | .fadeOutUp { 14 | animation-name: fadeOutUp; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDown { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(-20px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateY(0); 10 | } 11 | } 12 | 13 | .fadeInDown { 14 | animation-name: fadeInDown; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeft { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(-20px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateX(0); 10 | } 11 | } 12 | 13 | .fadeInLeft { 14 | animation-name: fadeInLeft; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDown { 2 | 0% { 3 | opacity: 1; 4 | transform: translateY(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateY(20px); 10 | } 11 | } 12 | 13 | .fadeOutDown { 14 | animation-name: fadeOutDown; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeft { 2 | 0% { 3 | opacity: 1; 4 | transform: translateX(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateX(-20px); 10 | } 11 | } 12 | 13 | .fadeOutLeft { 14 | animation-name: fadeOutLeft; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRight { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(20px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateX(0); 10 | } 11 | } 12 | 13 | .fadeInRight { 14 | animation-name: fadeInRight; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUpBig { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(2000px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateY(0); 10 | } 11 | } 12 | 13 | .fadeInUpBig { 14 | animation-name: fadeInUpBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRight { 2 | 0% { 3 | opacity: 1; 4 | transform: translateX(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateX(20px); 10 | } 11 | } 12 | 13 | .fadeOutRight { 14 | animation-name: fadeOutRight; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUpBig { 2 | 0% { 3 | opacity: 1; 4 | transform: translateY(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateY(-2000px); 10 | } 11 | } 12 | 13 | .fadeOutUpBig { 14 | animation-name: fadeOutUpBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDownBig { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(-2000px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateY(0); 10 | } 11 | } 12 | 13 | .fadeInDownBig { 14 | animation-name: fadeInDownBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeftBig { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(-2000px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateX(0); 10 | } 11 | } 12 | 13 | .fadeInLeftBig { 14 | animation-name: fadeInLeftBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDownBig { 2 | 0% { 3 | opacity: 1; 4 | transform: translateY(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateY(2000px); 10 | } 11 | } 12 | 13 | .fadeOutDownBig { 14 | animation-name: fadeOutDownBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeftBig { 2 | 0% { 3 | opacity: 1; 4 | transform: translateX(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateX(-2000px); 10 | } 11 | } 12 | 13 | .fadeOutLeftBig { 14 | animation-name: fadeOutLeftBig; 15 | } -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_entrances/fadeInRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRightBig { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(2000px); 5 | } 6 | 7 | 100% { 8 | opacity: 1; 9 | transform: translateX(0); 10 | } 11 | } 12 | 13 | .fadeInRightBig { 14 | animation-name: fadeInRightBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/fading_exits/fadeOutRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRightBig { 2 | 0% { 3 | opacity: 1; 4 | transform: translateX(0); 5 | } 6 | 7 | 100% { 8 | opacity: 0; 9 | transform: translateX(2000px); 10 | } 11 | } 12 | 13 | .fadeOutRightBig { 14 | animation-name: fadeOutRightBig; 15 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/attention_seekers/pulse.css: -------------------------------------------------------------------------------- 1 | /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ 2 | 3 | @keyframes pulse { 4 | 0% { transform: scale(1); } 5 | 50% { transform: scale(1.1); } 6 | 100% { transform: scale(1); } 7 | } 8 | 9 | .pulse { 10 | animation-name: pulse; 11 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/lightspeed/lightSpeedOut.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedOut { 2 | 0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 3 | 100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 4 | } 5 | 6 | .lightSpeedOut { 7 | animation-name: lightSpeedOut; 8 | 9 | animation-timing-function: ease-in; 10 | } -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | call('GET', '/'); 13 | 14 | $this->assertEquals(200, $response->getStatusCode()); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /bootstrap/environment.php: -------------------------------------------------------------------------------- 1 | detectEnvironment(function() 10 | { 11 | return getenv('APP_ENV') ?: 'production'; 12 | }); -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/specials/rollIn.css: -------------------------------------------------------------------------------- 1 | /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ 2 | 3 | @keyframes rollIn { 4 | 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 5 | 100% { opacity: 1; transform: translateX(0px) rotate(0deg); } 6 | } 7 | 8 | .rollIn { 9 | animation-name: rollIn; 10 | } -------------------------------------------------------------------------------- /public/front/plugins/jquery-cookie/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.cookie", 3 | "version": "1.4.0", 4 | "main": [ 5 | "./jquery.cookie.js" 6 | ], 7 | "dependencies": { 8 | "jquery": ">=1.2" 9 | }, 10 | "ignore": [ 11 | "test", 12 | ".*", 13 | "*.json", 14 | "*.md", 15 | "*.txt", 16 | "Gruntfile.js" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /app/Models/Upload.php: -------------------------------------------------------------------------------- 1 | 5 |
6 |
7 |
8 |
Home
9 | 10 |
11 | You are logged in! 12 |
13 |
14 |
15 |
16 | 17 | @endsection 18 | -------------------------------------------------------------------------------- /app/Models/Agenda.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes... 9 | RewriteRule ^(.*)/$ /$1 [L,R=301] 10 | 11 | # Handle Front Controller... 12 | RewriteCond %{REQUEST_FILENAME} !-d 13 | RewriteCond %{REQUEST_FILENAME} !-f 14 | RewriteRule ^ index.php [L] 15 | 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Galician (gl) 4 | translated by: donatorouco 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imaxe {current} de {total}", 8 | previous: "Anterior", 9 | next: "Seguinte", 10 | close: "Pechar", 11 | xhrError: "Erro na carga do contido.", 12 | imgError: "Erro na carga da imaxe." 13 | }); 14 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Galician (gl) 4 | translated by: donatorouco 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imaxe {current} de {total}", 8 | previous: "Anterior", 9 | next: "Seguinte", 10 | close: "Pechar", 11 | xhrError: "Erro na carga do contido.", 12 | imgError: "Erro na carga da imaxe." 13 | }); 14 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/bouncing_entrances/bounceInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceInUp { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(2000px); 5 | } 6 | 7 | 60% { 8 | opacity: 1; 9 | transform: translateY(-30px); 10 | } 11 | 12 | 80% { 13 | transform: translateY(10px); 14 | } 15 | 16 | 100% { 17 | transform: translateY(0); 18 | } 19 | } 20 | 21 | .bounceInUp { 22 | animation-name: bounceInUp; 23 | } -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-es.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Spanish (es) 4 | translated by: migolo 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imagen {current} de {total}", 8 | previous: "Anterior", 9 | next: "Siguiente", 10 | close: "Cerrar", 11 | xhrError: "Error en la carga del contenido.", 12 | imgError: "Error en la carga de la imagen." 13 | }); 14 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-es.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Spanish (es) 4 | translated by: migolo 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imagen {current} de {total}", 8 | previous: "Anterior", 9 | next: "Siguiente", 10 | close: "Cerrar", 11 | xhrError: "Error en la carga del contenido.", 12 | imgError: "Error en la carga de la imagen." 13 | }); 14 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | make('Illuminate\Contracts\Console\Kernel')->bootstrap(); 15 | 16 | return $app; 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 18 | // 19 | $this->call('TblKepegawaianTableSeeder'); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/bouncing_entrances/bounceInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceInDown { 2 | 0% { 3 | opacity: 0; 4 | transform: translateY(-2000px); 5 | } 6 | 7 | 60% { 8 | opacity: 1; 9 | transform: translateY(30px); 10 | } 11 | 12 | 80% { 13 | transform: translateY(-10px); 14 | } 15 | 16 | 100% { 17 | transform: translateY(0); 18 | } 19 | } 20 | 21 | .bounceInDown { 22 | animation-name: bounceInDown; 23 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/bouncing_entrances/bounceInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceInLeft { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(-2000px); 5 | } 6 | 7 | 60% { 8 | opacity: 1; 9 | transform: translateX(30px); 10 | } 11 | 12 | 80% { 13 | transform: translateX(-10px); 14 | } 15 | 16 | 100% { 17 | transform: translateX(0); 18 | } 19 | } 20 | 21 | .bounceInLeft { 22 | animation-name: bounceInLeft; 23 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/bouncing_entrances/bounceInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceInRight { 2 | 0% { 3 | opacity: 0; 4 | transform: translateX(2000px); 5 | } 6 | 7 | 60% { 8 | opacity: 1; 9 | transform: translateX(-30px); 10 | } 11 | 12 | 80% { 13 | transform: translateX(10px); 14 | } 15 | 16 | 100% { 17 | transform: translateX(0); 18 | } 19 | } 20 | 21 | .bounceInRight { 22 | animation-name: bounceInRight; 23 | } -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Catala (ca) 4 | translated by: eduard salla 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imatge {current} de {total}", 8 | previous: "Anterior", 9 | next: "Següent", 10 | close: "Tancar", 11 | xhrError: "Error en la càrrega del contingut.", 12 | imgError: "Error en la càrrega de la imatge." 13 | }); 14 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Chinese Traditional (zh-TW) 4 | translated by: Atans Chiu 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "圖片 {current} 總共 {total}", 8 | previous: "上一頁", 9 | next: "下一頁", 10 | close: "關閉", 11 | xhrError: "此內容加載失敗.", 12 | imgError: "此圖片加載失敗.", 13 | slideshowStart: "開始幻燈片", 14 | slideshowStop: "結束幻燈片" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-kr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Korean (kr) 4 | translated by: lunareffect 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "총 {total} 중 {current}", 8 | previous: "이전", 9 | next: "다음", 10 | close: "닫기", 11 | xhrError: "컨텐츠를 불러오는 데 실패했습니다.", 12 | imgError: "이미지를 불러오는 데 실패했습니다.", 13 | slideshowStart: "슬라이드쇼 시작", 14 | slideshowStop: "슬라이드쇼 중지" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-kr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Korean (kr) 4 | translated by: lunareffect 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "총 {total} 중 {current}", 8 | previous: "이전", 9 | next: "다음", 10 | close: "닫기", 11 | xhrError: "컨텐츠를 불러오는 데 실패했습니다.", 12 | imgError: "이미지를 불러오는 데 실패했습니다.", 13 | slideshowStart: "슬라이드쇼 시작", 14 | slideshowStop: "슬라이드쇼 중지" 15 | }); 16 | -------------------------------------------------------------------------------- /public/front/plugins/jquery.transit/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.transit", 3 | "repo": "rstacruz/jquery.transit", 4 | "description": "Smooth CSS3 transitions and transformations for jQuery.", 5 | "version": "0.9.9", 6 | "keywords": [ 7 | "css3", 8 | "animation", 9 | "transition" 10 | ], 11 | "dependencies": { 12 | "jquery": "*" 13 | }, 14 | "development": {}, 15 | "license": "MIT", 16 | "main": "jquery.transit.js" 17 | } 18 | -------------------------------------------------------------------------------- /app/Models/Data.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Menu', 'data_id'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Chinese Simplified (zh-CN) 4 | translated by: zhao weiming 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "当前图像 {current} 总共 {total}", 8 | previous: "前一页", 9 | next: "后一页", 10 | close: "关闭", 11 | xhrError: "此内容无法加载", 12 | imgError: "此图片无法加载", 13 | slideshowStart: "开始播放幻灯片", 14 | slideshowStop: "停止播放幻灯片" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/lightspeed/lightSpeedIn.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedIn { 2 | 0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 3 | 60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 4 | 80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 5 | 100% { transform: translateX(0%) skewX(0deg); opacity: 1; } 6 | } 7 | 8 | .lightSpeedIn { 9 | animation-name: lightSpeedIn; 10 | animation-timing-function: ease-out; 11 | } -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Chinese Simplified (zh-CN) 4 | translated by: zhao weiming 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "当前图像 {current} 总共 {total}", 8 | previous: "前一页", 9 | next: "后一页", 10 | close: "关闭", 11 | xhrError: "此内容无法加载", 12 | imgError: "此图片无法加载", 13 | slideshowStart: "开始播放幻灯片", 14 | slideshowStop: "停止播放幻灯片" 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/content/ajax.html: -------------------------------------------------------------------------------- 1 |
2 | Homer
3 | \noun\
4 | 1. American bonehead
5 | 2. Pull a Homer-
6 | to succeed despite
7 | idiocy 8 |
9 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/content/ajax.html: -------------------------------------------------------------------------------- 1 |
2 | Homer
3 | \noun\
4 | 1. American bonehead
5 | 2. Pull a Homer-
6 | to succeed despite
7 | idiocy 8 |
9 | -------------------------------------------------------------------------------- /public/front/plugins/flex-slider/demo/js/demo.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | var toggles = $('.toggle a'), 3 | codes = $('.code'); 4 | 5 | toggles.on("click", function(event){ 6 | event.preventDefault(); 7 | var $this = $(this); 8 | 9 | if (!$this.hasClass("active")) { 10 | toggles.removeClass("active"); 11 | $this.addClass("active"); 12 | codes.hide().filter(this.hash).show(); 13 | } 14 | }); 15 | toggles.first().click(); 16 | }); -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Japanaese (ja) 4 | translated by: Hajime Fujimoto 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{total}枚中{current}枚目", 8 | previous: "前", 9 | next: "次", 10 | close: "閉じる", 11 | xhrError: "コンテンツの読み込みに失敗しました", 12 | imgError: "画像の読み込みに失敗しました", 13 | slideshowStart: "スライドショー開始", 14 | slideshowStop: "スライドショー終了" 15 | }); 16 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Japanaese (ja) 4 | translated by: Hajime Fujimoto 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{total}枚中{current}枚目", 8 | previous: "前", 9 | next: "次", 10 | close: "閉じる", 11 | xhrError: "コンテンツの読み込みに失敗しました", 12 | imgError: "画像の読み込みに失敗しました", 13 | slideshowStart: "スライドショー開始", 14 | slideshowStop: "スライドショー終了" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /app/Models/Foto.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Galeri','id_album'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-et.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Estonian (et) 4 | translated by: keevitaja 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{current}/{total}", 8 | previous: "eelmine", 9 | next: "järgmine", 10 | close: "sulge", 11 | xhrError: "Sisu ei õnnestunud laadida.", 12 | imgError: "Pilti ei õnnestunud laadida.", 13 | slideshowStart: "Käivita slaidid", 14 | slideshowStop: "Peata slaidid" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-et.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Estonian (et) 4 | translated by: keevitaja 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{current}/{total}", 8 | previous: "eelmine", 9 | next: "järgmine", 10 | close: "sulge", 11 | xhrError: "Sisu ei õnnestunud laadida.", 12 | imgError: "Pilti ei õnnestunud laadida.", 13 | slideshowStart: "Käivita slaidid", 14 | slideshowStop: "Peata slaidid" 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-he.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Hebrew (he) 4 | translated by: DavidCo 5 | site: DavidCo.me 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "תמונה {current} מתוך {total}", 9 | previous: "הקודם", 10 | next: "הבא", 11 | close: "סגור", 12 | xhrError: "שגיאה בטעינת התוכן.", 13 | imgError: "שגיאה בטעינת התמונה.", 14 | slideshowStart: "התחל מצגת", 15 | slideshowStop: "עצור מצגת" 16 | }); 17 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-he.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Hebrew (he) 4 | translated by: DavidCo 5 | site: DavidCo.me 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "תמונה {current} מתוך {total}", 9 | previous: "הקודם", 10 | next: "הבא", 11 | close: "סגור", 12 | xhrError: "שגיאה בטעינת התוכן.", 13 | imgError: "שגיאה בטעינת התמונה.", 14 | slideshowStart: "התחל מצגת", 15 | slideshowStop: "עצור מצגת" 16 | }); 17 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/jquery.transit/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.transit", 3 | "repo": "rstacruz/jquery.transit", 4 | "description": "Smooth CSS3 transitions and transformations for jQuery.", 5 | "version": "0.9.9", 6 | "keywords": [ 7 | "css3", 8 | "animation", 9 | "transition" 10 | ], 11 | "dependencies": { 12 | "component/jquery": "*" 13 | }, 14 | "development": {}, 15 | "license": "MIT", 16 | "scripts": [ 17 | "jquery.transit.js" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /resources/views/guru/templates/breadcrumbs.blade.php: -------------------------------------------------------------------------------- 1 | @if ($breadcrumbs) 2 | 16 | @endif -------------------------------------------------------------------------------- /public/assets/css/print.css: -------------------------------------------------------------------------------- 1 | .navbar { 2 | display: none; 3 | } 4 | .main-navigation{ 5 | display: none; 6 | } 7 | .hidden-print { 8 | display: none; 9 | } 10 | .breadcrumb { 11 | display: none; 12 | } 13 | .page-header { 14 | display: none; 15 | } 16 | .footer { 17 | display: none; 18 | } 19 | .main-container { 20 | margin: 0 !important; 21 | padding: 0 !important; 22 | } 23 | .main-content .container{ 24 | min-height: auto !important; 25 | border: none !important; 26 | } -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-id.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Indonesian (id) 4 | translated by: sarwasunda 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "ke {current} dari {total}", 8 | previous: "Sebelumnya", 9 | next: "Berikutnya", 10 | close: "Tutup", 11 | xhrError: "Konten ini tidak dapat dimuat.", 12 | imgError: "Gambar ini tidak dapat dimuat.", 13 | slideshowStart: "Putar", 14 | slideshowStop: "Berhenti" 15 | }); 16 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /resources/views/backend/templates/breadcrumbs.blade.php: -------------------------------------------------------------------------------- 1 | @if ($breadcrumbs) 2 | 16 | @endif -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Arabic (ar) 4 | translated by: A.Rhman Sayes 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "الصورة {current} من {total}", 8 | previous: "السابق", 9 | next: "التالي", 10 | close: "إغلاق", 11 | xhrError: "حدث خطأ أثناء تحميل المحتوى.", 12 | imgError: "حدث خطأ أثناء تحميل الصورة.", 13 | slideshowStart: "تشغيل العرض", 14 | slideshowStop: "إيقاف العرض" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-id.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Indonesian (id) 4 | translated by: sarwasunda 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "ke {current} dari {total}", 8 | previous: "Sebelumnya", 9 | next: "Berikutnya", 10 | close: "Tutup", 11 | xhrError: "Konten ini tidak dapat dimuat.", 12 | imgError: "Gambar ini tidak dapat dimuat.", 13 | slideshowStart: "Putar", 14 | slideshowStop: "Berhenti" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Arabic (ar) 4 | translated by: A.Rhman Sayes 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "الصورة {current} من {total}", 8 | previous: "السابق", 9 | next: "التالي", 10 | close: "إغلاق", 11 | xhrError: "حدث خطأ أثناء تحميل المحتوى.", 12 | imgError: "حدث خطأ أثناء تحميل الصورة.", 13 | slideshowStart: "تشغيل العرض", 14 | slideshowStop: "إيقاف العرض" 15 | }); 16 | -------------------------------------------------------------------------------- /app/Models/Jawaban.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Polling','id_soal_poll'); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Swedish (sv) 4 | translated by: Mattias Reichel 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Bild {current} av {total}", 8 | previous: "Föregående", 9 | next: "Nästa", 10 | close: "Stäng", 11 | xhrError: "Innehållet kunde inte laddas.", 12 | imgError: "Den här bilden kunde inte laddas.", 13 | slideshowStart: "Starta bildspel", 14 | slideshowStop: "Stoppa bildspel" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Finnish (fi) 4 | translated by: Mikko 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Kuva {current} / {total}", 8 | previous: "Edellinen", 9 | next: "Seuraava", 10 | close: "Sulje", 11 | xhrError: "Sisällön lataaminen epäonnistui.", 12 | imgError: "Kuvan lataaminen epäonnistui.", 13 | slideshowStart: "Aloita kuvaesitys.", 14 | slideshowStop: "Lopeta kuvaesitys." 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Hungarian (hu) 4 | translated by: kovadani 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{current}/{total} kép", 8 | previous: "Előző", 9 | next: "Következő", 10 | close: "Bezár", 11 | xhrError: "A tartalmat nem sikerült betölteni.", 12 | imgError: "A képet nem sikerült betölteni.", 13 | slideshowStart: "Diavetítés indítása", 14 | slideshowStop: "Diavetítés leállítása" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Swedish (sv) 4 | translated by: Mattias Reichel 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Bild {current} av {total}", 8 | previous: "Föregående", 9 | next: "Nästa", 10 | close: "Stäng", 11 | xhrError: "Innehållet kunde inte laddas.", 12 | imgError: "Den här bilden kunde inte laddas.", 13 | slideshowStart: "Starta bildspel", 14 | slideshowStop: "Stoppa bildspel" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Finnish (fi) 4 | translated by: Mikko 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Kuva {current} / {total}", 8 | previous: "Edellinen", 9 | next: "Seuraava", 10 | close: "Sulje", 11 | xhrError: "Sisällön lataaminen epäonnistui.", 12 | imgError: "Kuvan lataaminen epäonnistui.", 13 | slideshowStart: "Aloita kuvaesitys.", 14 | slideshowStop: "Lopeta kuvaesitys." 15 | }); 16 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Hungarian (hu) 4 | translated by: kovadani 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "{current}/{total} kép", 8 | previous: "Előző", 9 | next: "Következő", 10 | close: "Bezár", 11 | xhrError: "A tartalmat nem sikerült betölteni.", 12 | imgError: "A képet nem sikerült betölteni.", 13 | slideshowStart: "Diavetítés indítása", 14 | slideshowStop: "Diavetítés leállítása" 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Dutch (nl) 4 | translated by: barryvdh 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Afbeelding {current} van {total}", 8 | previous: "Vorige", 9 | next: "Volgende", 10 | close: "Sluiten", 11 | xhrError: "Deze inhoud kan niet geladen worden.", 12 | imgError: "Deze afbeelding kan niet geladen worden.", 13 | slideshowStart: "Diashow starten", 14 | slideshowStop: "Diashow stoppen" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Dutch (nl) 4 | translated by: barryvdh 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Afbeelding {current} van {total}", 8 | previous: "Vorige", 9 | next: "Volgende", 10 | close: "Sluiten", 11 | xhrError: "Deze inhoud kan niet geladen worden.", 12 | imgError: "Deze afbeelding kan niet geladen worden.", 13 | slideshowStart: "Diashow starten", 14 | slideshowStop: "Diashow stoppen" 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.php.project 4 | 5 | 6 | pro 7 | 8 | 9 | endif 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-da.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Danish (da) 4 | translated by: danieljuhl 5 | site: danieljuhl.dk 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "Billede {current} af {total}", 9 | previous: "Forrige", 10 | next: "Næste", 11 | close: "Luk", 12 | xhrError: "Indholdet fejlede i indlæsningen.", 13 | imgError: "Billedet fejlede i indlæsningen.", 14 | slideshowStart: "Start slideshow", 15 | slideshowStop: "Stop slideshow" 16 | }); 17 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-da.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Danish (da) 4 | translated by: danieljuhl 5 | site: danieljuhl.dk 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "Billede {current} af {total}", 9 | previous: "Forrige", 10 | next: "Næste", 11 | close: "Luk", 12 | xhrError: "Indholdet fejlede i indlæsningen.", 13 | imgError: "Billedet fejlede i indlæsningen.", 14 | slideshowStart: "Start slideshow", 15 | slideshowStop: "Stop slideshow" 16 | }); 17 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Croatian (hr) 4 | translated by: Mladen Bicanic (base.hr) 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Slika {current} od {total}", 8 | previous: "Prethodna", 9 | next: "Sljedeća", 10 | close: "Zatvori", 11 | xhrError: "Neuspješno učitavanje sadržaja.", 12 | imgError: "Neuspješno učitavanje slike.", 13 | slideshowStart: "Pokreni slideshow", 14 | slideshowStop: "Zaustavi slideshow" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Croatian (hr) 4 | translated by: Mladen Bicanic (base.hr) 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Slika {current} od {total}", 8 | previous: "Prethodna", 9 | next: "Sljedeća", 10 | close: "Zatvori", 11 | xhrError: "Neuspješno učitavanje sadržaja.", 12 | imgError: "Neuspješno učitavanje slike.", 13 | slideshowStart: "Pokreni slideshow", 14 | slideshowStop: "Zaustavi slideshow" 15 | }); -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-it.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Italian (it) 4 | translated by: maur8ino 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Immagine {current} di {total}", 8 | previous: "Precedente", 9 | next: "Successiva", 10 | close: "Chiudi", 11 | xhrError: "Errore nel caricamento del contenuto.", 12 | imgError: "Errore nel caricamento dell'immagine.", 13 | slideshowStart: "Inizia la presentazione", 14 | slideshowStop: "Termina la presentazione" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Brazilian Portuguese (pt-br) 4 | translated by: ReinaldoMT 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imagem {current} de {total}", 8 | previous: "Anterior", 9 | next: "Próxima", 10 | close: "Fechar", 11 | slideshowStart: "iniciar apresentação de slides", 12 | slideshowStop: "parar apresentação de slides", 13 | xhrError: "Erro ao carregar o conteúdo.", 14 | imgError: "Erro ao carregar a imagem." 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-it.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Italian (it) 4 | translated by: maur8ino 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Immagine {current} di {total}", 8 | previous: "Precedente", 9 | next: "Successiva", 10 | close: "Chiudi", 11 | xhrError: "Errore nel caricamento del contenuto.", 12 | imgError: "Errore nel caricamento dell'immagine.", 13 | slideshowStart: "Inizia la presentazione", 14 | slideshowStop: "Termina la presentazione" 15 | }); 16 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Brazilian Portuguese (pt-br) 4 | translated by: ReinaldoMT 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Imagem {current} de {total}", 8 | previous: "Anterior", 9 | next: "Próxima", 10 | close: "Fechar", 11 | slideshowStart: "iniciar apresentação de slides", 12 | slideshowStop: "parar apresentação de slides", 13 | xhrError: "Erro ao carregar o conteúdo.", 14 | imgError: "Erro ao carregar a imagem." 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-si.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Slovenian (si) 4 | translated by: Boštjan Pišler (pisler.si) 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Slika {current} od {total}", 8 | previous: "Prejšnja", 9 | next: "Naslednja", 10 | close: "Zapri", 11 | xhrError: "Vsebine ni bilo mogoče naložiti.", 12 | imgError: "Slike ni bilo mogoče naložiti.", 13 | slideshowStart: "Zaženi prezentacijo", 14 | slideshowStop: "Zaustavi prezentacijo" 15 | }); -------------------------------------------------------------------------------- /app/Http/Requests/AbsensiRequest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Bulgarian (bg) 4 | translated by: Marian M.Bida 5 | site: webmax.bg 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "изображение {current} от {total}", 9 | previous: "предишна", 10 | next: "следваща", 11 | close: "затвори", 12 | xhrError: "Неуспешно зареждане на съдържанието.", 13 | imgError: "Неуспешно зареждане на изображението.", 14 | slideshowStart: "пусни слайд-шоу", 15 | slideshowStop: "спри слайд-шоу" 16 | }); 17 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Latvian (lv) 4 | translated by: Matiss Roberts Treinis 5 | site: x0.lv 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "attēls {current} no {total}", 9 | previous: "iepriekšējais", 10 | next: "nākamais", 11 | close: "aizvērt", 12 | xhrError: "Neizdevās ielādēt saturu.", 13 | imgError: "Neizdevās ielādēt attēlu.", 14 | slideshowStart: "sākt slaidrādi", 15 | slideshowStop: "apturēt slaidrādi" 16 | }); 17 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Russian (ru) 4 | translated by: Marfa 5 | site: themarfa.name 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "изображение {current} из {total}", 9 | previous: "назад", 10 | next: "вперёд", 11 | close: "закрыть", 12 | xhrError: "Не удалось загрузить содержимое.", 13 | imgError: "Не удалось загрузить изображение.", 14 | slideshowStart: "начать слайд-шоу", 15 | slideshowStop: "остановить слайд-шоу" 16 | }); -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Bulgarian (bg) 4 | translated by: Marian M.Bida 5 | site: webmax.bg 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "изображение {current} от {total}", 9 | previous: "предишна", 10 | next: "следваща", 11 | close: "затвори", 12 | xhrError: "Неуспешно зареждане на съдържанието.", 13 | imgError: "Неуспешно зареждане на изображението.", 14 | slideshowStart: "пусни слайд-шоу", 15 | slideshowStop: "спри слайд-шоу" 16 | }); 17 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Latvian (lv) 4 | translated by: Matiss Roberts Treinis 5 | site: x0.lv 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "attēls {current} no {total}", 9 | previous: "iepriekšējais", 10 | next: "nākamais", 11 | close: "aizvērt", 12 | xhrError: "Neizdevās ielādēt saturu.", 13 | imgError: "Neizdevās ielādēt attēlu.", 14 | slideshowStart: "sākt slaidrādi", 15 | slideshowStop: "apturēt slaidrādi" 16 | }); 17 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Romanian (ro) 4 | translated by: shurub3l 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "imagine {current} din {total}", 8 | previous: "precedenta", 9 | next: "următoarea", 10 | close: "închideți", 11 | xhrError: "Acest conținut nu poate fi încărcat.", 12 | imgError: "Această imagine nu poate fi încărcată", 13 | slideshowStart: "începeți prezentarea (slideshow)", 14 | slideshowStop: "opriți prezentarea (slideshow)" 15 | }); -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Romanian (ro) 4 | translated by: shurub3l 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "imagine {current} din {total}", 8 | previous: "precedenta", 9 | next: "următoarea", 10 | close: "închideți", 11 | xhrError: "Acest conținut nu poate fi încărcat.", 12 | imgError: "Această imagine nu poate fi încărcată", 13 | slideshowStart: "începeți prezentarea (slideshow)", 14 | slideshowStop: "opriți prezentarea (slideshow)" 15 | }); -------------------------------------------------------------------------------- /database/seeds/TblKepegawaianTableSeeder.php: -------------------------------------------------------------------------------- 1 | '123453539', 14 | 'nama_pegawai' => 'Admin', 15 | 'kelahiran' => 'Jakarta, 17 Agustus 1945', 16 | 'matpel' => 'TIK', 17 | 'jk' => 'L', 18 | 'status' => 'admin', 19 | 'username' => 'admin', 20 | 'password' => Hash::make( 'password' ), 21 | 22 | ]); 23 | 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var elixir = require('laravel-elixir'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Elixir Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Elixir provides a clean, fluent API for defining some basic Gulp tasks 9 | | for your Laravel application. By default, we are compiling the Less 10 | | file for our application, as well as publishing vendor resources. 11 | | 12 | */ 13 | 14 | elixir(function(mix) { 15 | mix.less('app.less'); 16 | }); 17 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Polski (pl) 4 | translated by: Tomasz Wasiński 5 | site: 2bevisible.pl 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "{current}. obrazek z {total}", 9 | previous: "Poprzedni", 10 | next: "Następny", 11 | close: "Zamknij", 12 | xhrError: "Nie udało się załadować treści.", 13 | imgError: "Nie udało się załadować obrazka.", 14 | slideshowStart: "rozpocznij pokaz slajdów", 15 | slideshowStop: "zatrzymaj pokaz slajdów" 16 | }); -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: French (fr) 4 | translated by: oaubert 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "image {current} sur {total}", 8 | previous: "précédente", 9 | next: "suivante", 10 | close: "fermer", 11 | xhrError: "Impossible de charger ce contenu.", 12 | imgError: "Impossible de charger cette image.", 13 | slideshowStart: "démarrer la présentation", 14 | slideshowStop: "arrêter la présentation" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Polski (pl) 4 | translated by: Tomasz Wasiński 5 | site: 2bevisible.pl 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "{current}. obrazek z {total}", 9 | previous: "Poprzedni", 10 | next: "Następny", 11 | close: "Zamknij", 12 | xhrError: "Nie udało się załadować treści.", 13 | imgError: "Nie udało się załadować obrazka.", 14 | slideshowStart: "rozpocznij pokaz slajdów", 15 | slideshowStop: "zatrzymaj pokaz slajdów" 16 | }); -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/flippers/flipInX.css: -------------------------------------------------------------------------------- 1 | @keyframes flipInX { 2 | 0% { 3 | transform: perspective(400px) rotateX(90deg); 4 | opacity: 0; 5 | } 6 | 7 | 40% { 8 | transform: perspective(400px) rotateX(-10deg); 9 | } 10 | 11 | 70% { 12 | transform: perspective(400px) rotateX(10deg); 13 | } 14 | 15 | 100% { 16 | transform: perspective(400px) rotateX(0deg); 17 | opacity: 1; 18 | } 19 | } 20 | 21 | .flipInX { 22 | backface-visibility: visible !important; 23 | animation-name: flipInX; 24 | } -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/flippers/flipInY.css: -------------------------------------------------------------------------------- 1 | @keyframes flipInY { 2 | 0% { 3 | transform: perspective(400px) rotateY(90deg); 4 | opacity: 0; 5 | } 6 | 7 | 40% { 8 | transform: perspective(400px) rotateY(-10deg); 9 | } 10 | 11 | 70% { 12 | transform: perspective(400px) rotateY(10deg); 13 | } 14 | 15 | 100% { 16 | transform: perspective(400px) rotateY(0deg); 17 | opacity: 1; 18 | } 19 | } 20 | 21 | .flipInY { 22 | backface-visibility: visible !important; 23 | animation-name: flipInY; 24 | } -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: French (fr) 4 | translated by: oaubert 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "image {current} sur {total}", 8 | previous: "précédente", 9 | next: "suivante", 10 | close: "fermer", 11 | xhrError: "Impossible de charger ce contenu.", 12 | imgError: "Impossible de charger cette image.", 13 | slideshowStart: "démarrer la présentation", 14 | slideshowStop: "arrêter la présentation" 15 | }); 16 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery ColorBox language configuration 3 | language: Ukrainian (uk) 4 | translated by: Andrew 5 | http://acisoftware.com.ua 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "зображення {current} з {total}", 9 | previous: "попереднє", 10 | next: "наступне", 11 | close: "закрити", 12 | xhrError: "Не вдалося завантажити вміст.", 13 | imgError: "Не вдалося завантажити зображення.", 14 | slideshowStart: "почати слайд-шоу", 15 | slideshowStop: "зупинити слайд-шоу" 16 | }); -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | } 10 | &:first-child { 11 | > a, 12 | > span { 13 | .border-left-radius(@border-radius); 14 | } 15 | } 16 | &:last-child { 17 | > a, 18 | > span { 19 | .border-right-radius(@border-radius); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery ColorBox language configuration 3 | language: Ukrainian (uk) 4 | translated by: Andrew 5 | http://acisoftware.com.ua 6 | */ 7 | jQuery.extend(jQuery.colorbox.settings, { 8 | current: "зображення {current} з {total}", 9 | previous: "попереднє", 10 | next: "наступне", 11 | close: "закрити", 12 | xhrError: "Не вдалося завантажити вміст.", 13 | imgError: "Не вдалося завантажити зображення.", 14 | slideshowStart: "почати слайд-шоу", 15 | slideshowStop: "зупинити слайд-шоу" 16 | }); -------------------------------------------------------------------------------- /public/front/plugins/animate.css/source/attention_seekers/wobble.css: -------------------------------------------------------------------------------- 1 | /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ 2 | 3 | @keyframes wobble { 4 | 0% { transform: translateX(0%); } 5 | 15% { transform: translateX(-25%) rotate(-5deg); } 6 | 30% { transform: translateX(20%) rotate(3deg); } 7 | 45% { transform: translateX(-15%) rotate(-3deg); } 8 | 60% { transform: translateX(10%) rotate(2deg); } 9 | 75% { transform: translateX(-5%) rotate(-1deg); } 10 | 100% { transform: translateX(0%); } 11 | } 12 | 13 | .wobble { 14 | animation-name: wobble; 15 | } -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /app/Models/Pegawai.php: -------------------------------------------------------------------------------- 1 | attributes['password'] = bcrypt($value); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Models/Siswa.php: -------------------------------------------------------------------------------- 1 | belongsTo('App\Models\Kelas', 'id_kelas'); 17 | } 18 | 19 | public function absensi() { 20 | return $this->hasMany('App\Models\Absensi','id_siswa'); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- 1 | 'gd' 19 | 20 | ); 21 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Serbian (sr) 4 | translated by: Sasa Stefanovic (baguje.com) 5 | */ 6 | jQuery.extend(jQuery.colorbox.settings, { 7 | current: "Slika {current} od {total}", 8 | previous: "Prethodna", 9 | next: "Sledeća", 10 | close: "Zatvori", 11 | xhrError: "Neuspešno učitavanje sadržaja.", 12 | imgError: "Neuspešno učitavanje slike.", 13 | slideshowStart: "Pokreni slideshow", 14 | slideshowStop: "Zaustavi slideshow" 15 | }); 16 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/assets/plugins/colorbox/i18n/jquery.colorbox-tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Turkish (tr) 4 | translated by: Caner ÖNCEL 5 | site: egonomik.com 6 | 7 | edited by: Sinan Eldem 8 | www.sinaneldem.com.tr 9 | */ 10 | jQuery.extend(jQuery.colorbox.settings, { 11 | current: "Görsel {current} / {total}", 12 | previous: "Önceki", 13 | next: "Sonraki", 14 | close: "Kapat", 15 | xhrError: "İçerik yüklenirken hata meydana geldi.", 16 | imgError: "Resim yüklenirken hata meydana geldi.", 17 | slideshowStart: "Slaytı Başlat", 18 | slideshowStop: "Slaytı Durdur" 19 | }); 20 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/i18n/jquery.colorbox-tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | jQuery Colorbox language configuration 3 | language: Turkish (tr) 4 | translated by: Caner ÖNCEL 5 | site: egonomik.com 6 | 7 | edited by: Sinan Eldem 8 | www.sinaneldem.com.tr 9 | */ 10 | jQuery.extend(jQuery.colorbox.settings, { 11 | current: "Görsel {current} / {total}", 12 | previous: "Önceki", 13 | next: "Sonraki", 14 | close: "Kapat", 15 | xhrError: "İçerik yüklenirken hata meydana geldi.", 16 | imgError: "Resim yüklenirken hata meydana geldi.", 17 | slideshowStart: "Slaytı Başlat", 18 | slideshowStop: "Slaytı Durdur" 19 | }); 20 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/assets/plugins/font-awesome/_backup v 4.0.3/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /public/front/plugins/font-awesome/_backup v 4.0.3/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- 1 | auth = $auth; 19 | } 20 | 21 | public function index() { 22 | // 23 | return view('backend.dashboard'); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /app/Providers/ConfigServiceProvider.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $uri = urldecode( 10 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 11 | ); 12 | 13 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 14 | // built-in PHP web server. This provides a convenient way to test a Laravel 15 | // application without having installed a "real" web server software here. 16 | if ($uri !== '/' and file_exists(__DIR__.'/public'.$uri)) 17 | { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /database/migrations/2015_11_08_203915_create_uploads_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 18 | $table->timestamps(); 19 | }); 20 | } 21 | 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::drop('uploads'); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /public/front/plugins/hover-dropdown/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-hover-dropdown", 3 | "version": "2.0.1", 4 | "description": "An unofficial Bootstrap plugin to enable Bootstrap dropdowns to activate on hover and provide a nice user experience.", 5 | "main": "./twitter-bootstrap-hover-dropdown.js", 6 | "keywords": [ 7 | "twitter", 8 | "bootstrap", 9 | "hover", 10 | "dropdowns" 11 | ], 12 | "homepage": "https://github.com/CWSpear/twitter-bootstrap-hover-dropdown", 13 | "dependencies": { 14 | "bootstrap": "~3.0.0" 15 | }, 16 | "author": { 17 | "name": "Cameron Spear", 18 | "web": "http://cameronspear.com" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a& { 9 | color: @color; 10 | 11 | .list-group-item-heading { 12 | color: inherit; 13 | } 14 | 15 | &:hover, 16 | &:focus { 17 | color: @color; 18 | background-color: darken(@background, 5%); 19 | } 20 | &.active, 21 | &.active:hover, 22 | &.active:focus { 23 | color: #fff; 24 | background-color: @color; 25 | border-color: @color; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 26 | ->hourly(); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /resources/assets/less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (will be removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /public/front/plugins/colorbox/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-colorbox", 3 | "description": "jQuery lightbox and modal window plugin", 4 | "version": "1.4.33", 5 | "dependencies": { 6 | "jquery": ">=1.3.2" 7 | }, 8 | "keywords": [ 9 | "modal", 10 | "lightbox", 11 | "window", 12 | "popup", 13 | "ui", 14 | "jQuery" 15 | ], 16 | "authors": [ 17 | { 18 | "name": "Jack Moore", 19 | "url": "http://www.jacklmoore.com", 20 | "email": "hello@jacklmoore.com" 21 | } 22 | ], 23 | "licenses": [ 24 | { 25 | "type": "MIT", 26 | "url": "http://www.opensource.org/licenses/mit-license.php" 27 | } 28 | ], 29 | "homepage": "http://www.jacklmoore.com/colorbox", 30 | "main": "jquery.colorbox.js" 31 | } --------------------------------------------------------------------------------