This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Block Class */ | |
| .insan { | |
| display: inline-block; | |
| /* Element Class */ | |
| &__pantolon { | |
| padding: 5px; | |
| } | |
| /* Element Class */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Block Class */ | |
| .insan { | |
| display: inline-block; | |
| } | |
| /* Element Class */ | |
| .insan__pantolon { | |
| padding: 5px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Offer Life Insurance Module | |
| * Hesapkurdu ARGE <arge@hesapkurdu.com> | |
| * Module developed by Aydin Cinar <aydin@hesapkurdu.com> | |
| */ | |
| $(function () { | |
| /*jQuery Selectors */ | |
| var $obj = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <mjml> | |
| <mj-body> | |
| <mj-section> | |
| <mj-column> | |
| <mj-text>Hesapkurdu.com</mj-text> | |
| </mj-column> | |
| <mj-column> | |
| <mj-text>Burası da ikinci sütun!</mj-text> | |
| </mj-column> | |
| </mj-section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // mjml paketi : https://www.npmjs.com/package/gulp-mjml | |
| // Kurulum : npm install gulp-mjml | |
| var gulp = require('gulp'), | |
| mjml = require('gulp-mjml'); | |
| var path = { | |
| mjml : 'src/templates/*.mjml', | |
| mjmlBuild : 'html/' | |
| }; |