forked from nagahitoyuki/imaginary-liquid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjapanese.xml
2312 lines (2207 loc) · 123 KB
/
japanese.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:layoutsVersion='3' b:responsive='true' b:templateUrl='japanese.xml' b:templateVersion='1.0.0' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale.language'>
<head expr:prefix='"og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# " + (data:view.isMultipleItems ? "website: http://ogp.me/ns/website#" : "article: http://ogp.me/ns/article#")'>
<meta expr:content='"text/html; charset=" + data:blog.encoding' http-equiv='Content-Type'/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<link href='//www.blogger.com' rel='dns-prefetch'/>
<b:if cond='data:blog.analyticsAccountNumber'>
<link href='//www.google-analytics.com' rel='dns-prefetch'/>
</b:if>
<b:if cond='data:blog.adsenseAutoAds'>
<link href='//pagead2.googlesyndication.com' rel='dns-prefetch'/>
<b:elseif cond='data:widgets.AdSense.first'/>
<link href='//pagead2.googlesyndication.com' rel='dns-preconnect'/>
</b:if>
<b:if cond='data:view.isSingleItem and data:view.featuredImage'>
<link expr:href='"//" + (data:view.featuredImage contains "blogger.googleusercontent.com" ? "blogger.googleusercontent.com" : data:view.featuredImage contains "1.bp.blogspot.com" ? "1.bp.blogspot.com" : data:view.featuredImage contains "2.bp.blogspot.com" ? "2.bp.blogspot.com" : data:view.featuredImage contains "3.bp.blogspot.com" ? "3.bp.blogspot.com" : "4.bp.blogspot.com")' rel='preconnect'/>
</b:if>
<b:with value='data:skin.vars.body_background.image' var='bgimg'>
<b:if cond='data:blog.isMobileRequest'>
<b:if cond='not data:view.isPreview and data:bgimg'>
<link as='image' expr:href='data:bgimg contains "googleusercontent" ? resizeImage(data:bgimg, 480) + "-rw-e60" : resizeImage(data:bgimg, 480)' rel='preload'/>
</b:if>
<link expr:href='data:view.url.canonical' rel='canonical'/>
<b:else/>
<b:if cond='not data:view.isPreview and data:bgimg'>
<b:with value='[481, 641]' var='minWidth'>
<b:loop index='i' values='resizeImage(data:bgimg, [640, 1024, 1240])' var='headerImage'>
<link as='image' expr:href='data:headerImage.url contains "googleusercontent" ? data:headerImage.url + "-rw-e60" : data:headerImage.url' expr:media='"(" + (data:i != 2 ? "max-width:" + data:headerImage.size + "px) and (min-width:" + data:minWidth[i] + "px)" : "min-width:1025px)")' rel='preload'/>
</b:loop>
</b:with>
</b:if>
<b:if cond='data:view.url == data:view.url.canonical'>
<link expr:href='data:view.url.canonical params {m : 1}' media='only screen and (max-width: 640px)' rel='alternate'/>
<b:else/>
<link expr:href='data:view.url.canonical' rel='canonical'/>
</b:if>
</b:if>
</b:with>
<title><data:view.title.escaped/><b:if cond='data:view.isArchive'>: <data:blog.pageName/>(<data:messages.archive/>)<b:elseif cond='data:view.isLabelSearch'/>: <data:blog.pageName/>(<data:messages.labels/>)<b:elseif cond='data:view.isSearch'/>: <data:messages.search/></b:if></title>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<b:if cond='data:widgets'>
<b:comment>Chrome, Firefox OS and Opera</b:comment>
<meta expr:content='data:skin.vars.body_background_color' name='theme-color'/>
<b:comment>Windows Phone</b:comment>
<meta expr:content='data:skin.vars.body_background_color' name='msapplication-navbutton-color'/>
</b:if>
<meta content='blogger' name='generator'/>
<link href='https://microformats.org/profile/hatom' rel='profile'/>
<link expr:href='data:blog.blogspotFaviconUrl' rel='icon' type='image/x-icon'/>
<link expr:href='data:blog.homepageUrl.canonical' expr:title='data:messages.home' rel='home'/>
<link expr:href='data:blog.searchUrl' expr:title='data:messages.search' rel='search'/>
<b:if cond='data:blog.adultContent'>
<meta content='adult' name='rating'/>
</b:if>
<data:blog.feedLinks/>
<meta expr:content='data:blog.url.canonical' property='og:url'/>
<b:if cond='data:view.isArchive or data:view.isLabelSearch'>
<meta expr:content='data:blog.pageTitle.escaped' property='og:title'/>
<b:elseif cond='data:view.isSearch'/>
<meta expr:content='data:view.title.escaped + ": " + data:messages.search' property='og:title'/>
<b:else/>
<meta expr:content='data:view.title.escaped' property='og:title'/>
</b:if>
<meta expr:content='data:view.description.escaped' property='og:description'/>
<b:if cond='data:view.isMultipleItems'>
<b:tag cond='data:widgets.Blog.first.posts.first.featuredImage' expr:content='resizeImage(data:widgets.Blog.first.posts.first.featuredImage, 1200, "1200:630")' property='og:image' name='meta'></b:tag>
<meta content='website' property='og:type'/>
<b:else/>
<b:tag cond='data:view.featuredImage' expr:content='resizeImage(data:view.featuredImage, 1200, "1200:630")' property='og:image' name='meta'></b:tag>
<meta content='article' property='og:type'/>
</b:if>
<meta expr:content='data:blog.title.escaped' property='og:site_name'/>
<b:skin version='1.0.0'><![CDATA[/*!
<!-- Variable definitions -->
<Variable name="keycolor" description="Main Color" type="color" default="#f0f8ff" value="#f0f8ff"/>
<Variable name="startSide" description="Start side in blog language" type="automatic" default="left" hideEditor="true" />
<Variable name="endSide" description="End side in blog language" type="automatic" default="right" hideEditor="true" />
<Group description="Page Text">
<Variable name="body.text.font" description="Font"
type="font"
default="15.8px sans-serif" value="15.8px sans-serif"/>
<Variable name="body.text.base.color" description="Color"
type="color"
default="#000" value="#000"/>
<Variable name="body.text.color" description="コメントフォームの色"
type="color"
default="$(posts.text.color)" value="#000"/>
</Group>
<Group description="Backgrounds">
<Variable name="body.background.height" description="Background height"
type="length"
min="310px"
max="620px"
default="413px" value="413px"/>
<Variable name="body.background" description="Background"
color="$(blog.header.color)"
type="background"
default="$(color) none repeat scroll center center" value="$(color) none no-repeat scroll center center"/>
<Variable name="blog.header.color" description="ブログのヘッダーのテキストの色"
type="color"
default="#999999" value="#999999"/>
<Variable name="body.background.color" description="Body background color"
type="color"
default="#f0f8ff" value="#f0f8ff"/>
<Variable name="posts.background.color" description="Post background color"
type="color"
default="#fff" value="#fff"/>
<Variable name="body.background.blur" description="Background blur"
type="length"
min="0px"
max="50px"
default="6px" value="6px"/>
</Group>
<Group description="Links">
<Variable name="body.link.base.color" description="Link color"
type="color"
default="#dc143c" value="#dc143c"/>
<Variable name="body.link.visited.color" description="Visited link color"
type="color"
default="$(body.link.base.color)" value="#dc143c"/>
<Variable name="body.link.hover.color" description="Link Hover Color"
type="color"
default="$(body.link.base.color)" value="#dc143c"/>
<Variable name="body.link.color" description="コメントフォームのリンクの色"
type="color"
default="$(posts.link.color)" value="#dc143c"/>
</Group>
<Group description="Blog title" selector="div.widget.Header">
<Variable name="blog.title.font" description="Font"
type="font"
default="bold 32px sans-serif" value="bold 32px sans-serif"/>
<Variable name="blog.title.color" description="Color"
type="color"
default="#fff" value="#fff"/>
</Group>
<Group description="Tabs text" selector="div.widget.PageList">
<Variable name="tabs.title.color" description="タブのタイトルの色"
type="color"
default="#ffd700" value="#ffd700"/>
<Variable name="tabs.font" description="Font"
type="font"
family="sans-serif"
size="15.8px"
default="bold 15.8px sans-serif" value="bold 15.8px sans-serif"/>
<Variable name="tabs.color" description="Text color"
type="color"
default="#fff" value="#fff"/>
</Group>
<Group description="Posts" selector="div.widget.Blog">
<Variable name="posts.title.color" description="Post title color"
type="color"
default="#000" value="#000"/>
<Variable name="posts.title.font" description="Post title font"
type="font"
default="bold 28.1px sans-serif" value="bold 28.1px sans-serif"/>
<Variable name="posts.stream.title.font" description="Post title stream font"
type="font"
default="bold 28.1px sans-serif" value="bold 28.1px sans-serif"/>
<Variable name="posts.text.font" description="Post text font"
type="font"
default="15.8px sans-serif" value="15.8px sans-serif"/>
<Variable name="posts.text.color" description="Post text color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="posts.link.color" description="Post link color"
type="color"
default="#dc143c" value="#dc143c"/>
<Variable name="posts.byline.color" description="Post byline color"
type="color"
red="$(posts.text.color.red)"
green="$(posts.text.color.green)"
blue="$(posts.text.color.blue)"
default="rgba($(red), $(green), $(blue), 0.6)" value="rgba(0, 0, 0, 0.6)"/>
<Variable name="blockquote.font" description="Blockquote font"
type="font"
default="15.8px sans-serif" value="15.8px sans-serif"/>
<Variable name="blockquote.color" description="Blockquote color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="posts.icons.color"
description="Post icons color"
type="color"
default="$(body.text.base.color)" value="#000"/>
</Group>
<Group description="Search">
<Variable name="search.input.color" description="Input color"
type="color"
default="#000" value="#000"/>
<Variable name="search.action.color" description="Action color"
type="color"
default="#000" value="#000"/>
<Variable name="search.input.font" description="Input font"
type="font"
default="15.8px sans-serif" value="15.8px sans-serif"/>
<Variable name="search.placeholder.color" description="Placeholder text color"
type="color"
red="$(search.input.color.red)"
green="$(search.input.color.green)"
blue="$(search.input.color.blue)"
default="rgba($(red), $(green), $(blue), 0.6)" value="rgba(0, 0, 0, 0.6)"/>
</Group>
<Group description="Sharing">
<Variable name="sticky.icons.color"
description="Sharing icons color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="sticky.background.color"
description="Sharing background color"
type="color"
default="$(body.background.color)" value="#f0f8ff"/>
</Group>
<Group description="Popular posts" selector="div.widget.PopularPosts">
<Variable name="popularposts.background.color"
description="Popular post background color"
type="color"
default="$(body.background.color)" value="#f0f8ff"/>
<Variable name="popularposts.title.font" description="人気の投稿のタイトルのフォント"
type="font"
default=" bold 20.9px sans-serif" value="bold 20.9px sans-serif"/>
<Variable name="popularposts.title.color"
description="Popular post title color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="popularposts.text.color"
description="Popular post text color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="popularposts.link.color"
description="Popular post link color"
type="color"
default="#dc143c" value="#dc143c"/>
</Group>
<Group description="Post navigation" selector='nav#blog_pager'>
<Variable name="posts.navigation.link.color"
description="Post navigation links color"
type="color"
default="#008000" value="#008000"/>
<Variable name="posts.navigation.link.visited.color"
description="Post navigation links visited color"
type="color"
default="$(posts.navigation.link.color)" value="#008000"/>
<Variable name="posts.navigation.link.hover.color"
description="Post navigations links hover color"
type="color"
default="$(posts.navigation.link.color)" value="#008000"/>
</Group>
<Group description="Sidebar" selector="div.sidebar-container">
<Variable name="sidebar.backgroundColorTop"
description="Background color (Top)"
type="color"
default="#f0f8ff" value="#f0f8ff"/>
<Variable name="sidebar.backgroundColorBottom"
description="Background color (Bottom)"
type="color"
default="#f0f8ff" value="#f0f8ff"/>
<Variable name="sidebar.separator.color"
description="Separator color"
type="color"
default="#b0c4de" value="#b0c4de"/>
<Variable name="widget.title.color"
description="Gadget title color"
type="color"
default="$(posts.title.color)" value="#000"/>
<Variable name="widget.text.color"
description="Gadget text color"
type="color"
default="$(posts.text.color)" value="#000"/>
<Variable name="sidebar.icons.color"
description="Sidebar icons color"
type="color"
default="#000" value="#000"/>
</Group>
<Group description="Author profile" selector='.widget.Profile'>
<Variable name="profile.title.color" description="Profile title color"
type="color"
default="#000" value="#000"/>
<Variable name="profile.text.color" description="Profile text color"
type="color"
default="$(posts.text.color)" value="#000"/>
<Variable name="profile.link.color" description="Profile link color"
type="color"
default="#dc143c" value="#dc143c"/>
</Group>
<Group description="Labels" selector=".widget.Label">
<Variable name="labels.text.color"
description="Label text color"
type="color"
default="#191970" value="#191970"/>
<Variable name="labels.background.color"
description="Label background color"
type="color"
red="$(labels.text.color.red)"
green="$(labels.text.color.green)"
blue="$(labels.text.color.blue)"
default="rgba($(red), $(green), $(blue), 0.1)" value="rgba(25, 25, 112, 0.1)"/>
</Group>
<Group description="Attribution" selector=".widget.Attribution">
<Variable name="attribution.text.color" description="Attribution text color"
type="color"
default="$(body.text.base.color)" value="#000"/>
<Variable name="attribution.link.color" description="Attribution link color"
type="color"
default="$(body.link.base.color)" value="#dc143c"/>
<Variable name="attribution.icon.color" description="Attribution icon color"
type="color"
default="#000" value="#000"/>
</Group>
<Group description="Widths">
<Variable name="sidebar.width" description="Sidebar width" type="length"
min="0px" max="1000px" default="295px" value="295px"/>
<Variable name="content.width" description="Content width" type="length"
min="600px" max="2400px" default="925px" value="925px"/>
<Variable name="content.margin" description="Content margin" type="length"
min="0px" max="1000px" default="20px" value="20px"/>
</Group>
*/
/*!************************************************
* Blogger Template Style
* Name: Imaginary with liquid design in Japanese
* Copyright: Nagahito Yuki 2019 | The MIT License | https://github.com/nagahitoyuki/imaginary-liquid
**************************************************/
/* 一般設定 */
:root {--floatingbar-height:42px;--maincolumn-padding:12px;--body-lineheight:1.6}
html {scroll-behavior:smooth}
body {width:min(100vw, $(sidebar.width + content.width + content.margin));height:auto;margin:0 auto;overflow-wrap:break-word;word-break:break-word;word-wrap:break-word;background-color:$(body.background.color);color:$(body.text.base.color);font:$(body.text.font);line-height:var(--body-lineheight);letter-spacing:normal}
a {text-decoration:none;color:$(body.link.base.color)}
a:visited {color:$(body.link.visited.color)}
a:hover {color:$(body.link.hover.color)}
h1, h2, h3, h4, h5, h6, .item-view #blog-title {scroll-margin-top:calc(1em + var(--floatingbar-height))}
img {max-width:100%;height:auto}
iframe {max-width:100%}
input {font-size:100%}
blockquote {margin:1em 2.5em}
/* ヘッダーの背景画像 */
.bg-photo-container {position:absolute;width:100%;height:$(body.background.height);overflow:hidden}
.bg-photo {width:calc(100% + $(body.background.blur * 2));height:calc(100% + $(body.background.blur * 2));position:absolute;left:-$(body.background.blur);top:-$(body.background.blur);background:$(body.background);background-size:auto;filter:blur($(body.background.blur))}
/* バランサー */
.hidden, .no-items {display:none}
.invisible {visibility:hidden}
.feed-view #sub_main, .feed-view #attribution {display:none}
.item-view #sub_main, .item-view #attribution {content-visibility:auto;contain-intrinsic-size:100%}
.sidebar-invisible {content-visibility:hidden;contain-intrinsic-size:100%;visibility:hidden}
.sidebar-visible {content-visibility:visible;overflow-y:hidden;visibility:visible}
.dim-overlay {background-color:rgba(0, 0, 0, .7);position:fixed;top:0;$startSide:0;width:100%;height:100vh;z-index:100}
/* ウィジェット */
.title, .feed-title {font-size:large;color:$(widget.title.color)}
.feed-title {font-weight:bold}
/* スキップナビ */
.skip-navigation {background-color:#fff;box-sizing:border-box;color:#000;display:block;height:0;$startSide:0;line-height:50px;overflow:hidden;padding-top:0;position:fixed;text-align:center;top:0;transition:box-shadow .3s, height .3s, padding-top .3s;width:100%;z-index:900}
.skip-navigation:focus{box-shadow:0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .2);height:50px}
/* アーカイブと検索のメッセージ */
.post-filter-message {background-color:rgba(0, 0, 0, .8);color:#fff;padding-top:calc(var(--maincolumn-padding) * 2.25);padding-bottom:calc(var(--maincolumn-padding) * 2.25);text-align:center}
.pfm-link {margin-$startSide:1em;color:#fff}
.post-filter-message .search-label, .post-filter-message .search-query {font-weight:bold}
/* 補足 */
.BLOG_mobile_video_class {display:none}
.CSS_LIGHTBOX {z-index:900}
#cookieChoiceInfo {bottom:0;top:auto}
.b-hbp-video {border:0}
.noscript {text-align:center;background:#ff0;color:#000;padding:var(--maincolumn-padding);margin-bottom:2em}
/* 通知 */
.b-notification {color:#000;background-color:#fff;border-bottom:solid 1px #000;box-sizing:border-box;padding:16px 32px;text-align:center}
.b-notification.visible {transition:margin-top .3s cubic-bezier(.4, 0, .2, 1)}
.b-notification.invisible {position:absolute}
.b-notification-close {position:absolute;$endSide:8px;top:8px}
.no-posts-message {line-height:40px;text-align:center}
/* ブログヘッダー */
.centered-top {padding-top:2em;padding-bottom:2em;text-align:center;margin-left:var(--maincolumn-padding);margin-right:var(--maincolumn-padding)}
#blog-title {color:$(blog.title.color);font:$(blog.title.font);margin:0;line-height:calc(var(--body-lineheight) - .1)}
#blog-title>a, #blog-title>a:hover, #blog-title>a:visited{color:$(blog.title.color)}
.blog-desc {color:$(blog.title.color);margin-top:1.5em;margin-bottom:0}
.header-widget {background-position:$startSide;background-repeat:no-repeat}
/* タブ */
.tabs-title {color:$(tabs.title.color);font-size:large;margin-top:1.25em;margin-bottom:0}
.tabs {list-style:none;padding-$startSide:0;display:flex;justify-content:space-evenly;align-items:center;flex-wrap:wrap;margin-top:1em;margin-bottom:-.5em}
.pl-items {font:$(tabs.font);min-width:15%;line-height:2.6}
.pl-items>a {color:$(tabs.color)}
/* フローティングバー */
#floating_bar {position:sticky;top:0;left:0;right:0;height:var(--floatingbar-height);width:100%;display:flex;justify-content:space-between;align-items:center;background-color:$(sticky.background.color);padding-left:var(--maincolumn-padding);padding-right:var(--maincolumn-padding);box-sizing:border-box;box-shadow:0 5px 10px -5px rgba(0,0,0,.45);z-index:50;contain:content}
#floating_menu, #floating_share {display:flex;column-gap:4px}
/* SVGアイコン */
.svg-icon-24-button, .loadingIcon {appearance:none;padding:0;border:none;background:transparent;}
.svg-icon-24 {vertical-align:middle;width:24px;height:24px;cursor:pointer}
.svg-icon-24>use {fill:$(sticky.icons.color)}
#close_button>.svg-icon-24 {fill:$(sidebar.icons.color)}
.post-icons .svg-icon-24 {fill:$(posts.icons.color)}
.svg-icon-back {stroke-width:2px;stroke:$(sticky.icons.color);fill:transparent}
.avatarIcon {width:24px;height:24px;fill:$(posts.icons.color);padding:5.5px}
.blogger .svg-icon-24 {fill:$(attribution.icon.color);vertical-align:bottom}
/* 戻るボタン/コメントボタン/ローディング */
#back_button, #comment_button, #add_button {display:flex;justify-content:center;align-items:center;position:fixed;bottom:calc(var(--maincolumn-padding) - ((var(--floatingbar-height) - 24px) / 2) + 4px);height:var(--floatingbar-height);background-color:$(sticky.background.color);box-shadow:5px 5px 10px -5px rgba(0,0,0,.35);z-index:50}
html[dir="rtl"] #back_button, html[dir="rtl"] #comment_button, html[dir="rtl"] #add_button {box-shadow:-5px 5px 10px -5px rgba(0,0,0,.35)}
#back_button, #comment_button {width:var(--floatingbar-height);border-radius:50%}
#back_button>.svg-icon-24 {padding-top:calc(-20px / 6);padding-bottom:calc(20px / 6)}
#add_button {color:$(sticky.icons.color);padding:0 calc(var(--floatingbar-height) / 2.5);border-radius:30px}
/* フェード */
@keyframes fadein {from{ opacity:0} to { opacity:1}}
@keyframes fadeout {from{ opacity:1} to { opacity:0}}
.fadein {animation:fadein .3s ease-out}
.fadeout {animation:fadeout .3s ease-out}
/* ブログ内検索 */
.search-input {display:inline-flex;align-items:center;column-gap:6px;animation:fadein .3s ease-out}
.search-space {color:$(search.input.color);background-color:rgba(255, 255, 255, .2);font:$(search.input.font)}
.search-space.no-cursor {color:transparent;text-shadow:0 0 0 $(search.input.color)}
.search-space::placeholder {color:$(search.placeholder.color);opacity:.6}
.search-action {color:$(search.action.color)}
/* アドセンス広告 */
.inline-ad {display:none;overflow:hidden}
.adsbygoogle {display:block;overflow:hidden}
/* ページボディー */
.centered {position:relative;display:flex;flex-direction:column;z-index:20}
.centered>* {flex:auto}
#content_wrapper {margin:0 auto}
.Blog {contain:content}
.blog-posts {background:$(body.background.color);display:grid;gap:var(--maincolumn-padding)}
.blog-posts>.post {background:$(posts.background.color);box-sizing:border-box;padding:20px var(--maincolumn-padding)}
.feed-view .blog-posts {grid-template-columns:1fr;margin-bottom:var(--maincolumn-padding)}
.feed-view .post+aside {align-self:stretch;display:grid}
.item-view .blog-posts {margin-bottom:calc(var(--maincolumn-padding) * 2.25)}
/* 注目の投稿 */
.FeaturedPost {padding:20px var(--maincolumn-padding);background-color:$(posts.background.color);margin-bottom:var(--maincolumn-padding)}
.FeaturedPost>.feed-title {margin-top:0;margin-bottom:20px}
.FeaturedPost>.feed-title>a {color:$(posts.title.color)}
.FeaturedPost .post>a, .FeaturedPost .post>a:hover, .FeaturedPost .post>a:visited {color:#fff}
.FeaturedPost .post>a, .FeaturedPost .snippet-thumbnail {width:100%;height:min((100vw - var(--maincolumn-padding) * 2) * 2 / 3, ($(content.width) - var(--maincolumn-padding) * 2) * 2 / 3);display:grid;align-items:center;text-align:center}
.no-image {background-color:#696969}
.fp-title {font:$(posts.stream.title.font);margin:0;padding:var(--maincolumn-padding);grid-column:1/2;grid-row:1/2;z-index:21}
.FeaturedPost .snippet-thumbnail {grid-column:1/2;grid-row:1/2;filter:brightness(70%);object-fit:cover}
/* 記事の題名 */
.entry-title {font:$(posts.title.font)}
.snippet-title {font:$(posts.stream.title.font);color:$(posts.title.color)}
.entry-title, .snippet-title>a, .snippet-title>a:hover, .snippet-title>a:visited {color:$(posts.title.color)}
.entry-title, .snippet-title {margin-top:0;margin-bottom:20px}
/* 記事のヘッダー/フッター */
.post-header-line-1 {display:flex;column-gap:4px;color:$(posts.byline.color)}
.pa-label {vertical-align:top}
.fn {display:inline-flex;align-items:center;column-gap:4px}
.photo {border-radius:50%}
.byline, .fn>span, .post-timestamp>a, .post-updatedtime, .pft-profile>span {color:$(posts.byline.color)}
.post-footer {display:flex;color:$(posts.byline.color)}
.post-footer a {color:$(posts.link.color)}
.hentry .post-footer {flex-direction:column}
.post-footer-line>span {display:block;margin-bottom:16px}
.pf-last {width:100%;text-align:$endSide;margin-bottom:16px;font-style:oblique}
.pf-last>.url {color:$(posts.byline.color)}
.archive-link {margin-$endSide:auto}
.jump-link {margin-$startSide:auto}
.author-profile {display:flex;column-gap:var(--maincolumn-padding);margin-bottom:16px}
.author-image {flex-shrink:0;width:50px;height:50px;border-radius:50%}
.author-desc {color:$(profile.text.color)}
/* 記事の本文とスニペット */
.post-body {font:$(posts.text.font);color:$(posts.text.color);line-height:var(--body-lineheight);margin:20px 0}
.post-body a, .post-body a:hover,.post-body a:visited {color:$(posts.link.color)}
.post-body blockquote {color:$(blockquote.color);font:$(blockquote.font);line-height:inherit}
.total-snippet {display:flow-root;width:min(100%, calc($(content.width) - var(--maincolumn-padding) * 2));margin-bottom:20px}
.total-snippet .snippet-thumbnail {float:$startSide;width:max(30%, 8em - var(--maincolumn-padding));height:auto;margin-$endSide:var(--maincolumn-padding);margin-bottom:calc((var(--body-lineheight) - 1) * .5em)}
.ytpic {background-color:#000}
.summary {font:$(posts.text.font);color:$(posts.text.color);line-height:var(--body-lineheight);margin-top:0;margin-bottom:0}
/* ラベル */
.post-labels>a, .label-name {color:$(labels.text.color);background-color:$(labels.background.color);border:1px solid $(labels.background.color);border-radius:1px;padding:2px 6px}
.label-name {display:inline-block}
.label-name:hover, .label-name:visited {color:$(labels.text.color)}
.list-label-widget-content ul {list-style:none;padding-$startSide:0}
.list-label-widget-content li {margin-bottom:12px}
.post-labels, .cloud-label-widget-content>.first-items, .cloud-label-widget-content>.remaining-items {display:flex;flex-wrap:wrap;gap:12px}
.cloud-label-widget-content>.remaining-items {margin-top:12px;margin-bottom:-12px}
.list-label-widget-content .remaining-items>li:last-child, .cloud-label-widget-content .remaining-items>span:last-child {margin-bottom:12px}
.post-labels:last-child {margin-bottom:16px}
/* コメント */
#comments {color:$(posts.text.color)}
.comment-thread ol {margin:0 0 0 18px;padding-$startSide:0}
#comments-block {margin-$startSide:18px}
.comment-replybox-single, .comment-replies {margin-$startSide:2em}
.thread-count {display:none}
.comment {list-style-type:none;padding:0 0 2em;position:relative;margin-bottom:1em}
.comment .comment {padding-bottom:1em;position:relative}
.avatar-image-container {position:absolute}
.avatar-image-container>img {border-radius:50%}
.avatar-image-container>svg {border-radius:50%;border:solid 1px $(posts.icons.color);box-sizing:border-box;height:35px;width:35px}
.comment-block {margin-$startSide:49px;padding-bottom:0}
.comment>svg+.comment-block {margin-top:-42px}
.comment-author-header-wrapper {margin-$startSide:40px}
.thread-expanded .comment-block {padding-bottom:1.5em}
.comment-header>.user, .comment-header>.user>a, .comment-author, .comment-author>a {color:$(posts.byline.color);font-style:normal}
.comment-actions {
bottom:0;margin-bottom:1em;position:absolute}
.comment-actions>* {
margin-$endSide:.5em}
.comment-header>.datetime {bottom:0;color:rgba($(posts.byline.color.red), $(posts.byline.color.green), $(posts.byline.color.blue), .6);display:inline-block;margin-$startSide:.5em}
.comment-timestamp>a, .comment-header>.datetime>a {
color:rgba($(posts.byline.color.red), $(posts.byline.color.green), $(posts.byline.color.blue), .6)}
.comment-content, .comment-body {margin-top:.75em;word-break:break-word}
#comment-post-message a, .footer a, .comment-content a, .comment-body a, .comment-actions>a, .comment-actions>a:visited, .comment-actions>a:hover, .blog-admin>a {color:$(posts.link.color)}
.comment-reply, .blog-admin>a {font-weight:normal}
.comment-replybox-single, .comment-replies a, .footer a {color:$(posts.link.color)}
.comment-body {margin-bottom:12px}
.embed[data-num-comments="0"] {border:0;margin-top:0;padding-top:0}
#comment-post-message, #comment-editor-src {display:none}
.loadmore.loaded {max-height:0;opacity:0;overflow:hidden}
.comment-link {color:$(posts.link.color);position:relative}
.comment-link .num_comments {margin-$startSide:.5em;vertical-align:top}
#comments .continue {display:none}
#comments>.title {font-size:large;color:$(posts.title.color);margin-top:0;margin-bottom:calc(var(--maincolumn-padding) * 2.25)}
.embed .footer p {margin-top:0}
.comment-thread+.footer {margin-bottom:1em}
#cmt+.footer, #comments-block+.footer {margin-bottom:.5em}
#cf-message {margin-bottom:0}
#eb-message {transform:translateY(.5em)}
.item-control {display:none}
/* ページングコントロール */
.paging-control-container {margin-bottom:16px}
.paging-control {display:inline-block}
.comment-range-text::after,.paging-control-container .paging-control {color:$(posts.link.color)}
.comment-range-text, .paging-control {margin-$endSide:8px}
.comment-range-text::after, .paging-control::after {content:'\00B7';cursor:default;padding-$startSide:8px;pointer-events:none}
.comment-range-text:last-child::after, .paging-control:last-child::after {content:none}
/* 人気の投稿 */
.PopularPosts {background-color:$(popularposts.background.color)}
.PopularPosts, .PopularPosts>.feed-title a, .PopularPosts>.title a {color:$(posts.text.color)}
.pp-title {font:$(popularposts.title.font);margin-top:20px;margin-bottom:20px}
.pp-title>a, .pp-title>a:hover, .pp-title>a:visited {color:$(popularposts.title.color)}
.PopularPosts .post-footer a, .PopularPosts .post-footer a:hover, .PopularPosts .post-footer a:visited {color:$(popularposts.link.color)}
.snippet-item {color:$(popularposts.text.color);margin:0}
.item-content {display:flex;column-gap:var(--maincolumn-padding)}
.item-content>img {flex:none;height:100%}
.PopularPosts .post+.post {border-top:1px dashed $(sidebar.separator.color)}
#page_body .PopularPosts {padding-left:var(--maincolumn-padding);padding-right:var(--maincolumn-padding);margin-bottom:calc(var(--maincolumn-padding) * 2.25)}
.centered .PopularPosts .post {margin-bottom:20px;padding:0}
.centered .item-content {margin-bottom:16px}
.centered .item-content>img {width:max(20%, 7em - var(--maincolumn-padding))}
.sidebar-container .item-content>img {width:calc(35% - var(--maincolumn-padding))}
/* ページャー */
#blog_pager {text-align:center;margin-top:calc(var(--maincolumn-padding) * 2.75);margin-bottom:calc(var(--maincolumn-padding) * .75);display:flex;justify-content:space-around}
#blog_pager>a {color:$(posts.navigation.link.color)}
#blog_pager>a:visited {color:$(posts.navigation.link.visited.color)}
#blog_pager>a:hover {color:$(posts.navigation.link.hover.color)}
/* サブメイン */
#sub_main {contain:content}
#sub_main .widget {margin-left:var(--maincolumn-padding);margin-right:var(--maincolumn-padding)}
#sub_main .widget ul {list-style:none;padding-$startSide:0}
#sub_main .widget ul ul {margin-$startSide:1em}
#sub_main .widget:last-child {margin-bottom:1.75em}
/* ブログの帰属 */
#attribution {text-align:center;font-size:small;color:$(attribution.text.color);margin-bottom:2em}
#attribution>div {line-height:24px;margin-top:.5em}
#attribution a, #attribution a:hover, #attribution a:visited {color:$(attribution.link.color)}
#Text1, .blogger, .image-attribution {margin-bottom:1em}
/* サイドバー */
.sidebar-container {display:flex;flex-direction:column;width:min($(sidebar.width), 80%);overflow-y:auto;box-sizing:border-box;-webkit-overflow-scrolling: touch;contain:content}
.sidebar_top {background-color:$(sidebar.backgroundColorTop)}
.sidebar_bottom {background-color:$(sidebar.backgroundColorBottom)}
.sidebar-container .widget {margin:0 var(--maincolumn-padding) 20px;color:$(widget.text.color)}
.sidebar-container .widget>.title {color:$(widget.title.color)}
.sidebar-container .widget ul {list-style:none;padding-$startSide:0}
.sidebar-container .widget ul ul {margin-$startSide:1em}
.sidebar-container .widget+.widget {border-top:1px dashed $(sidebar.separator.color)}
/* プロフィール */
.Profile {margin:0 auto;box-sizing:border-box}
.Profile .title {color:$(profile.title.color)}
.individual {text-align:center}
.team-members {list-style:none;padding-$startSide:0}
.profile-link {display:flex;color:$(profile.link.color);font-weight:bold}
.profile-img {border-radius:50%;vertical-align:top}
.i-type, .v-type {flex-direction:column}
.profile-data, .profile-textblock {color:$(profile.text.color);margin-$startSide:0;padding-top:8px}
.t-type {width:auto;height:44px;}
.t-type>.profile-img {flex:none;margin-$endSide:1em}
.t-type .profile-name {align-self:center}
/* アーカイブとラベル */
.BlogArchive>.title, .Label>.title, .BlogArchive .first-items>ul, .list-label-widget-content .remaining-items>ul li:last-child {margin-bottom:0}
.BlogArchive .remaining-items>ul, .list-label-widget-content .first-items>ul, .list-label-widget-content .remaining-items>ul {margin-top:0;margin-bottom:0}
.BlogArchive .post-count::before, .Label .label-count::before {content:'('}
.BlogArchive .post-count::after, .Label .label-count::after {content:')'}
#ArchiveList, .list-label-widget-content, .cloud-label-widget-content {display:flex;flex-direction:column}
.remaining-items {position:absolute;visibility:hidden;overflow:hidden;transition:all .3s ease-out}
.show-more, .show-less {margin-$startSide:auto;font-size:medium;color:$(body.link.base.color);margin-top:24px;cursor:pointer}
.list-label-widget-content, .cloud-label-widget-content {margin-top:24px}
/* テキスト */
.Text .widget-content {margin-bottom:16px}
/* 連絡フォーム */
.contact-form-button {color:inherit}
.contact-form-name, .contact-form-email, .contact-form-email-message {max-width:100%;box-sizing:border-box}
.contact-form-asterisk {font-weight:bolder}
.contact-form-error {text-align:center;width:min(100%, $(sidebar.width) - var(--maincolumn-padding) * 2)}
/* 不正行為を報告 */
.report_abuse {font-weight:400}
/* 翻訳 */
.Translate .skiptranslate>div{display:block!important}
/* エラー */
.error-view .post-outer-container {background:$(body.background.color);padding:var(--maincolumn-padding);border-bottom:4px #c0c0c0 double}
/* ブログのコンテンツとサイドバーと隙間の幅以上 */
@media screen and (min-width:$(sidebar.width + content.width + content.margin)) {
/* 位置取り */
body {position:relative}
.centered-top {margin-top:30px;margin-bottom:30px}
#content_wrapper {position:relative}
#content_wrapper, #sub_main {width:$(content.width + sidebar.width + content.margin)}
#page_body {width:$(content.width)}
#hamburger_menu, #search_expand, #febtn {display:none}
#swc.hidden {display:block}
/* 戻るボタン/コメントボタン/ローディング */
#back_button {$endSide:calc(50% - ($(sidebar.width + content.width + content.margin)) / 2 + var(--maincolumn-padding) - ((var(--floatingbar-height) - 24px) / 2) + 4px)}
#comment_button, #add_button {$startSide:calc(50% - ($(sidebar.width + content.width + content.margin)) / 2 + var(--maincolumn-padding) - ((var(--floatingbar-height) - 24px) / 2) + 4px)}
/* サイドバー */
.navigation {display:none}
.sidebar-container {position:absolute;top:var(--floatingbar-height);$endSide:0;margin-$startSide:$(content.margin);z-index:20}
.sidebar-invisible {content-visibility:visible;visibility:visible}
}
/* ブログのコンテンツとサイドバーと隙間の幅以下 */
@media screen and (max-width:$(sidebar.width + content.width + content.margin - 1px)) {
/* 位置取り */
.search-input {margin-$startSide:4px;margin-$endSide:8px}
#search_expand {margin-$startSide:-4px}
#content_wrapper {width:min(100vw, $(content.width))}
/* 戻るボタン/コメントボタン/ローディング */
#back_button {$endSide:calc(var(--maincolumn-padding) - ((var(--floatingbar-height) - 24px) / 2) + 4px)}
#comment_button, #add_button {$startSide:calc(var(--maincolumn-padding) - ((var(--floatingbar-height) - 24px) / 2) + 4px)}
/* サイドバー */
.navigation {background-color:$(sidebar.backgroundColorTop);text-align:$endSide;padding-top:var(--maincolumn-padding);padding-$endSide:var(--maincolumn-padding);padding-bottom:var(--maincolumn-padding);margin-bottom:calc(var(--maincolumn-padding) * -1)}
.sidebar-container {position:fixed;top:0;$startSide:-$(sidebar.width);$endSide:auto;bottom:0;transition:transform .3s ease-out;z-index:101}
.slidein {transform:translateX($(sidebar.width))}
.slideout {transform:translateX(0)}
html[dir="rtl"] .slidein {transform:translateX(-$(sidebar.width))}
html[dir="rtl"] .slideout {transform:translateX(0)}
}
/* コンテンツの幅以上 */
@media screen and (min-width:$(content.width)) {
/* 記事の題名 */
.entry-title, .snippet-title, .fp-title {line-height:calc(var(--body-lineheight) - .2)}
.pp-title {line-height:calc(var(--body-lineheight) - .1)}
/* 記事の本文 */
.post-body h1 {font-size:26.5px;line-height:calc(var(--body-lineheight) - .1)}
.post-body h2 {font-size:25px;line-height:calc(var(--body-lineheight) - .1)}
.post-body h3 {font-size:20.9px}
.post-body h4 {font-size:15.8px}
.post-body h5 {font-size:13px}
.post-body h6 {font-size:10.7px}
/* アドセンス広告 */
.desktop-ad>.inline-ad {display:block;width:100%;max-width:100%}
.desktop-ad>.inline-ad {margin:calc(var(--maincolumn-padding) / 2) auto}
}
/* コンテンツの幅以下 */
@media screen and (max-width:$(content.width - 1px)) {
/* ページボディー */
.post {max-width:100vw}
.feed-view .post+aside {align-self:stretch;display:grid}
/* 投稿画像 */
.item-view .post-body a[imageanchor="1"][style*="float: left;"], .item-view .post-body a[imageanchor="1"][style*="float: right;"] {float:none !important;clear:none!important}
.item-view .post-body a[imageanchor="1"]>img {display:block;margin:0 auto}
.item-view .post-body>.separator:first-child>a[imageanchor="1"]:first-child {
margin-top:20px}
.post-body a[imageanchor] {display:block}
.item-view .post-body a[imageanchor="1"] {margin-left:0 !important;margin-right:0 !important}
.item-view .post-body a[imageanchor="1"]+a[imageanchor="1"] {margin-top:16px}
/* アドセンス広告 */
.mobile-ad>.inline-ad {display:block;width:min(100%, calc(100vw - var(--maincolumn-padding) * 2))}
.mobile-ad>.inline-ad {margin:calc(var(--maincolumn-padding) / 2) auto}
.feed-view .mobile-ad>.inline-ad {align-self:center}
}
/* タブレット中心 */
@media screen and (max-width:$(content.width - 1px)) and (min-width:481px) {
/* 文字サイズと行間 */
.entry-title, .snippet-title, .fp-title, .post-body h1 {line-height:calc(var(--body-lineheight) - .2)}
.post-body h2, .pp-title {line-height:calc(var(--body-lineheight) - .1)}
#blog-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 18)}
body, .post-body, .summary, .snippet-item, .post-body blockquote, .post-body h4 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 36)}
.entry-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 22)}
.snippet-title, .fp-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 22)}
.post-body h1 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 22)}
.post-body h2 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 25)}
.post-body h3 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 30)}
.post-body h5 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 44)}
.post-body h6 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 55)}
.pp-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 30)}
}
/* スマホ中心 */
@media screen and (max-width:480px) and (min-width:321px) {
/* 文字サイズと行間 */
.entry-title, .snippet-title, .fp-title, .post-body h1, .post-body h2{line-height:calc(var(--body-lineheight) - .1)}
#blog-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 12.5)}
body, .post-body, .summary, .snippet-item, .post-body blockquote, .post-body h4 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 22)}
.entry-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 15)}
.snippet-title, .fp-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 15)}
.post-body h1 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 15)}
.post-body h2 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 17)}
.post-body h3 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 20)}
.post-body h5 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 25)}
.post-body h6 {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 30)}
.pp-title {font-size:calc((100vw - var(--maincolumn-padding) * 2) / 17)}
}
]]></b:skin>
<b:if cond='data:view.isLayoutMode'><b:template-skin>
<![CDATA[body#layout .bg-photo {display:none}
body#layout .centered {display:block;max-width:925px;margin:0 auto}
body#layout .centered-top {margin-top:0;margin-bottom:0}
body#layout #floating_bar {position:initial;display:initial}
body#layout #floating_menu {display:initial}
body#layout .sidebar-invisible {visibility:visible}]]></b:template-skin><b:elseif cond='data:view.isPreview'/>
<style>.widget-ad-placeholder, .inline-ad-placeholder {background:$(posts.background.color);border:1px solid #000;opacity:.9;vertical-align:middle;text-align:center}
.widget-ad-placeholder span, .inline-ad-placeholder span {margin-top:36px;display:block;text-transform:uppercase;font-weight:700;color:$(posts.title.color)}
.widget-ad-placeholder {height:336px}
.inline-ad-placeholder {height:90px}</style></b:if>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='widgetNotAvailableInPreview'>
<b:if cond='data:widget.type == "AdSense"'>
<div class='widget-ad-placeholder'>
<span><b:message name='messages.adsGoHere'/></span>
</div>
<b:else/>
<b:include name='super.widgetNotAvailableInPreview'/>
</b:if>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='PopularPosts'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget-content' role='feed'>
<b:include name='snippetedPosts'/>
</div>
</b:includable>
<b:includable id='postSnippet'>
<p class='snippet-item'>
<data:post.snippets.short/>
</p>
</b:includable>
<b:includable id='postFooterJumpLink'>
<a class='jump-link' expr:href='data:post.url' expr:title='data:post.title'>
<data:blog.jumpLinkMessage/>
</a>
</b:includable>
<b:includable id='snippetedPostContent'>
<b:include name='snippetedPostTitle'/>
<a class='item-content' expr:href='data:post.url'>
<b:include cond='data:post.featuredImage and data:this.postDisplay.showFeaturedImage' name='snippetedPostThumbnail'/>
<b:if cond='data:this.postDisplay.showSnippet'>
<b:with value='"popular-posts"' var='snippetPrefix'>
<b:include cond='data:post' data='post' name='postSnippet'/>
</b:with>
</b:if>
</a>
<b:if cond='data:widget.sectionId == "sub_main"'>
<footer class='post-footer'>
<b:if cond='data:post.url'>
<a class='byline archive-link' expr:href='data:view.url path (data:post.date.year + (data:post.date.month lt 10 ? "/0" : "/") + data:post.date.month + "/")' expr:title='data:messages.archive' rel='archives'><data:messages.archive/></a>
</b:if>
<b:include data='post' name='postFooterJumpLink'/>
</footer>
</b:if>
</b:includable>
<b:includable id='snippetedPostThumbnail'>
<b:with value='data:post.featuredImage' var='imgurl'>
<b:if cond='data:imgurl contains "googleusercontent.com"'>
<img expr:alt='data:messages.image' expr:src='data:imgurl' expr:srcset='resizeImage(data:imgurl, 94, "1:1") + "-rw-e60 94w, " + resizeImage(data:imgurl, 188, "1:1") + "-rw-e60 188w"' height='94' loading='lazy' sizes='(max-width:480px) 20vw, 188px' width='94'/>
<b:else/>
<img expr:alt='data:messages.image' expr:src='data:imgurl' expr:srcset='sourceSet(data:imgurl, [94,188], "1:1")' height='94' loading='lazy' sizes='(max-width:480px) 20vw, 188px' width='94'/>
</b:if>
</b:with>
</b:includable>
<b:includable id='snippetedPostTitle'>
<b:tag expr:name='data:title ? "h4" : "h3"' class='pp-title'>
<a expr:href='data:post.url' rel='bookmark' title='permanent link'><data:post.title/></a>
</b:tag>
</b:includable>
<b:includable id='snippetedPosts'>
<b:loop values='data:posts' var='post'>
<article class='post' expr:aria-setsize='data:posts.length'>
<b:include name='snippetedPostContent'/>
</article>
</b:loop>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Profile'>
<b:includable id='main' var='this'>
<div class='wrapper'>
<b:with value='data:messages.blogAuthors' var='defaultTitle'>
<b:include name='widget-title'/>
</b:with>
<b:include name='content'/>
</div>
</b:includable>
<b:includable id='authorProfileImage'>
<img class='profile-img' expr:alt='data:messages.myPhoto' expr:height='data:team ? 44 : data:authorPhoto.height' expr:loading='data:blog.isMobileRequest ? "lazy" : "eager"' expr:src='data:authorPhoto.image' expr:width='data:team ? 44 : data:authorPhoto.width'/>
</b:includable>
<b:includable id='content'>
<b:if cond='data:team'>
<div class='widget-content team'>
<b:include name='teamProfile'/>
</div>
<b:else/>
<div class='widget-content individual'>
<b:include name='userProfile'/>
</div>
</b:if>
</b:includable>
<b:includable id='defaultProfileImage'>
<b:comment>Don't show avatar icon.</b:comment>
</b:includable>
<b:includable id='profileImage'>
<b:if cond='data:authorPhoto.image'>
<b:include name='authorProfileImage'/>
<b:else/>
<b:include name='defaultProfileImage'/>
</b:if>
</b:includable>
<b:includable id='teamProfile'>
<ul class='team-members'>
<b:loop values='data:authors' var='author'>
<li>
<b:include data='author' name='teamProfileLink'/>
</li>
</b:loop>
</ul>
</b:includable>
<b:includable id='teamProfileLink'>
<a class='profile-link t-type' expr:href='data:userUrl' rel='me nofollow'>
<b:include name='profileImage'/>
<span class='profile-name'><data:display-name/></span>
</a>
</b:includable>
<b:includable id='userGoogleProfile'>
<b:comment>Don't show G+ profile.</b:comment>
</b:includable>
<b:includable id='userLocation'>
<dd class='profile-data location'><data:location/></dd>
</b:includable>
<b:includable id='userProfile'>
<b:include name='userProfileImage'/>
<b:include name='userProfileInfo'/>
</b:includable>
<b:includable id='userProfileData'>
<dt class='profile-data'>
<b:include name='userProfileLink'/>
</dt>
</b:includable>
<b:includable id='userProfileImage'>
<a expr:href='data:userUrl' rel='me nofollow'>
<b:include name='profileImage'/>
</a>
</b:includable>
<b:includable id='userProfileInfo'>
<dl class='profile-datablock'>
<b:class cond='data:showlocation and data:location != ""' name='has-location'/>
<b:include name='userProfileData'/>
<b:include cond='data:showlocation and data:location != ""' name='userLocation'/>
<b:include cond='data:aboutme != ""' name='userProfileText'/>
</dl>
<b:include name='viewProfileLink'/>
</b:includable>
<b:includable id='userProfileLink'>
<a class='profile-link i-type' expr:href='data:userUrl' rel='me nofollow'>
<data:displayname/>
</a>
</b:includable>
<b:includable id='userProfileText'>
<dd class='profile-textblock'>
<data:aboutme/>
</dd>
</b:includable>
<b:includable id='viewProfileLink'>
<a class='profile-link v-type' expr:href='data:userUrl' rel='me nofollow'>
<data:messages.viewMyCompleteProfile/>
</a>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='BlogArchive'>
<b:includable id='main' var='this'>
<b:include name='super.main'/>
</b:includable>
<b:includable id='content'>
<div class='widget-content' id='ArchiveList'>
<b:include cond='data:this.style == "HIERARCHY"' name='hierarchy'/>
<b:include cond='data:this.style in {"FLAT", "MENU"}' name='flat'/>
</div>
</b:includable>
<b:includable id='flat'>
<b:include data='{ items: data:this.data, itemSet: "data", itemsMarkup: "flatOrder" }' name='extendableItems'/>
</b:includable>
<b:includable id='flatOrder'>
<ul class='flat'><b:loop values='data:data' var='i'><li><a expr:href='data:i.url'><data:i.name/><span class='post-count'><data:i.post-count/></span></a></li></b:loop></ul>
</b:includable>
<b:includable id='hierarchy'>
<b:include data='{ limit: 1, items: data:this.data, itemSet: "data", itemsMarkup: "super.hierarchy" }' name='extendableItems'/>
</b:includable>
<b:includable id='interval' var='intervals'>
<ul class='hierarchy'>
<b:loop values='data:intervals' var='interval'>
<li>
<a expr:href='data:interval.url'>
<data:interval.name/>
<span class='post-count'><data:interval.post-count/></span>
</a>
<b:include cond='data:interval.data' data='interval.data' name='interval'/>
<b:include cond='data:interval.posts' data='interval.posts' name='posts'/>
</li>
</b:loop>
</ul>
</b:includable>
<b:includable id='posts' var='posts'>
<ul class='hierarchy'>
<b:loop values='data:posts' var='post'>
<li>
<a expr:href='data:post.url'><data:post.title/></a>
</li>
</b:loop>
</ul>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='Label'>
<b:includable id='main' var='this'>
<b:include name='super.main'/>
</b:includable>
<b:includable id='cloud'>
<b:include data='{ items: data:this.labels, itemSet: "labels", itemsMarkup: "cloudOrder" }' name='extendableItems'/>
</b:includable>
<b:includable id='cloudOrder'>
<b:loop values='data:labels' var='label'><span><a class='label-name' expr:href='data:label.url'><data:label.name/><b:if cond='data:this.showFreqNumbers'><span class='label-count'><data:label.count/></span></b:if></a></span></b:loop>
</b:includable>
<b:includable id='content'>