yawn-themele
yawn-themele
カスタムテーマsample
8 posts
せつめいだよーせつめいだよーせつめいだよーせつめいだよーせつめいだよーせつめいだよーせつめいだよー
Don't wanna be here? Send us removal request.
yawn-themele · 5 years ago
Text
markdown test
markdown sample
h2
h3
h4
h5
h6
letter
bold
italic
~~delete~~
annotation
テキスト1
quate
quate
quate
list
list1
list2
list1
list2
list
list
list
link
google
code
inline-code
func main() { return }
table
head head head body body body body body body
注釈内容 ↩︎
0 notes
yawn-themele · 5 years ago
Text
sass
sassの導入メモ
tree
. ├── gulpfile.js ├── package-lock.json ├── package.json └── src ├── index.html ├── css │ └── sample.css └── sass └── sample.scss
installとか
// npmの初期化 $ npm init -y // gulp ローカルインストール $ npm install gulp --save-dev // gulp-sass ローカルインストール $ npm install gulp-sass --save-dev
gulpfile
gulpfile.js
// モジュールの読み込み var gulp = require("gulp"); var sass = require("gulp-sass"); // タスクを作成 // gulp.task("タスク名", 実行される処理) gulp.task("sass", function () { return ( gulp.src("src/sass/**/*.scss") // 取得するファイル .pipe(sass({ outputStyle: "expanded" })) // コンパイル時のオプション .pipe(gulp.dest("src/css")) // 保存先 ); }); gulp.task("sass-watch", function () { return gulp.watch("src/sass/**/*.scss", function () { return ( gulp.src("src/sass/**/*.scss") .pipe(sass({ outputStyle: "expanded" }).on("error", sass.logError)) .pipe(gulp.dest("src/css")) ); }); });
操作
$ gulp sassで単発コンパイル $ gulp sass-watchで監視
0 notes
yawn-themele · 5 years ago
Conversation
chatサンプル
ashley: hello victor
victor: hello.
0 notes
yawn-themele · 5 years ago
Link
link
0 notes
yawn-themele · 5 years ago
Quote
hello world
たんぶらのぶろぐ
0 notes
yawn-themele · 5 years ago
Photo
Tumblr media Tumblr media
複数の画像
0 notes
yawn-themele · 5 years ago
Photo
Tumblr media
image1
0 notes
yawn-themele · 5 years ago
Text
markdown sample
header1
text
header2
list
list1
list2
list3
num list
list
list
list
header3
table
head head head body body body body body body
header4
inline-code
https://www.tumblr.com/docs/en/custom_themes func main(){ return 0 }
header5
header6
1 note · View note