forked from iam312/tistory_to_wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
1321 lines (1020 loc) · 68.4 KB
/
test.html
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
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,width=device-width,target-densitydpi=medium-dpi">
<title>서하 - 구시렁 구시렁</title>
<link rel="alternate" type="application/rss+xml" title="구시렁 구시렁" href="http://iam312.pe.kr/rss" />
<link rel="stylesheet" href="//s1.daumcdn.net/cfs.tistory/custom/blog/1/17043/skin/style.css?_T_=1457279824">
<link rel="stylesheet" href="//s1.daumcdn.net/cfs.tistory/custom/blog/1/17043/skin/images/font.css">
<!--[if lt IE 9]>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<!--<![endif]-->
<link rel="stylesheet" type="text/css" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/CommentCaptcha/css/captcha.css"/>
<script type="text/javascript">
var needCommentCaptcha = true;
var commentCaptchaType = 'bottom';
</script> <style type="text/css">
.ExifInfo {
margin:5px 0px 5px 0px;
font:8pt tahoma;
color:#777777;
text-align:left;
}
.ExifInfo span {
display:inline-block !important;
white-space:normal !important;
}
.ExifInfo .exifBar {
font:7pt Arial;color:#ccc;margin:0 2px 0 2px;
}
</style>
<link rel="stylesheet" type="text/css" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/TistoryProfileLayer/style.css" />
<script type="text/javascript" src="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/TistoryProfileLayer/profile.js"></script>
<style type="text/css">
.another_category { border: 1px solid #E5E5E5; padding: 10px 10px 5px; margin:10px 0; clear: both; }
.another_category h4 { font-size: 12px !important; margin: 0 !important; border-bottom: 1px solid #E5E5E5 !important; padding: 2px 0 6px !important; }
.another_category h4 a { font-weight: bold !important; }
.another_category table { table-layout: fixed; border-collapse: collapse; width: 100% !important; margin-top: 10px !important; }
* html .another_category table { width: auto !important; }
*:first-child+html .another_category table { width: auto !important; }
.another_category th, .another_category td { padding: 0 0 4px !important; }
.another_category th { text-align: left; font-size: 12px !important; font-weight: normal; word-break: break-all; overflow: hidden; line-height: 1.5; }
.another_category td { text-align: right; width: 80px; font-size: 11px; }
.another_category th a { font-weight: normal; text-decoration: none; border: none !important; }
.another_category th a.current{ font-weight: bold; text-decoration: none !important; border-bottom: 1px solid !important; }
.another_category th span { font-weight: normal; text-decoration: none; font: 10px Tahoma, Sans-serif; border: none !important; }
.another_category_color_gray, .another_category_color_gray h4 { border-color: #E5E5E5 !important; }
.another_category_color_gray * { color: #909090 !important; }
.another_category_color_gray th a.current{border-color:#909090 !important;}
.another_category_color_gray h4, .another_category_color_gray h4 a { color: #737373 !important; }
.another_category_color_red, .another_category_color_red h4 { border-color: #F6D4D3 !important; }
.another_category_color_red * { color: #E86869 !important; }
.another_category_color_red th a.current{border-color:#E86869 !important;}
.another_category_color_red h4, .another_category_color_red h4 a { color: #ED0908 !important; }
.another_category_color_green, .another_category_color_green h4 { border-color: #CCE7C8 !important; }
.another_category_color_green * { color: #64C05B !important; }
.another_category_color_green th a.current{border-color:#64C05B !important;}
.another_category_color_green h4, .another_category_color_green h4 a { color: #3EA731 !important; }
.another_category_color_blue, .another_category_color_blue h4 { border-color: #C8DAF2 !important; }
.another_category_color_blue * { color: #477FD6 !important; }
.another_category_color_blue th a.current{border-color:#477FD6 !important;}
.another_category_color_blue h4, .another_category_color_blue h4 a { color: #1960CA !important; }
.another_category_color_violet, .another_category_color_violet h4 { border-color: #E1CEEC !important; }
.another_category_color_violet * { color:#9D64C5 !important; }
.another_category_color_violet th a.current{border-color:#9D64C5 !important;}
.another_category_color_violet h4, .another_category_color_violet h4 a { color: #7E2CB5 !important; }
</style>
<script type="text/javascript">
//<![CDATA[
var servicePath = "";
var blogURL = "";
//]]>
</script>
<script type="text/javascript" src="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/script/_/base.js"></script>
<link rel="stylesheet" type="text/css" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/style/dialog.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/css/ttDesk.css" />
<link rel="stylesheet" type="text/css" media="screen" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/css/ttDesklightbox.css" />
<style type="text/css">
#TD_content p{
padding:0;
margin:0;
}
.TD_headline {
font-size:1.2em;
font-weight:bold;
padding:0;
}
.TD_subtitle{
font-weight:bold;
color:#999;
}
.TD_date {
color:#999;
font:0.9em verdana;
}
.TD_category {
margin-left:2px;
}
.TD_category a{
color:#999;
}
.TD_name {
font-weight:nomal;
}
.TD_tagbox{
padding:5px 0;
}
.TD_tagbox .TD_tagtitle{
background:url(//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/ico_tag.gif) no-repeat;
width:30px;
height:14px;
float:left;
}
.TD_tagbox .TD_tagtitle span{
display:none;
}
/* 헤드라인형 모듈 */
.TD_toparticle {
padding:5px 0 10px 0;
margin:5px 10px 5px 5px;
}
.TD_toparticle .TD_titleinfo{
background:url(//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/ico_gallery_title.gif) 0 2px no-repeat;
padding-left:50px;
}
.TD_titleinfo {
padding-bottom:5px;
}
.TD_toparticle .TD_tblist {
display:none;
}
.TD_toparticle .TD_tagbox {
display:none;
}
.TD_toparticle .TD_summary{
background-color:#eee;
padding:20px 10px;
text-align:center;
color:#999;
}
.TD_toparticle .TD_summary p{
margin:0 10px;
}
.TD_toparticle .TD_summary img {
margin-bottom:10px;
}
/* 섬네일 목록형 모듈 */
.TD_thumblist{
padding:5px 0;
margin:5px 5px 10px 10px;
}
.TD_thumblist p{
padding:0;
margin:0;
letter-spacing:-1px;
}
.TD_thumblist .TD_headline {
font-size:1.1em;
font-weight:bold;
padding:0 0 0 10px;
text-align:center;
}
.TD_thumblist .TD_summary{
padding:0;
text-align:center;
}
.TD_thumblist .TD_thumbnail{
border:3px solid #eee;
}
/* 텍스트 목록형 모듈 */
.TD_list{
margin:5px;
}
.TD_list .TD_headline {
padding:0 0 0 20px;
font-size:1.2em;
line-height:1.2em;
background:url(//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/bull_listbig.gif) 0 2px no-repeat;
}
.TD_list .TD_date {
margin-left:5px;
font-weight:normal;
font-size:0.75em;
}
.TD_list .TD_summary {
display:none;
}
/* 앨범형 모듈 */
.TD_album{
margin:5px;
padding: 0 5px 5px 10px;
}
.TD_album img {
margin:0 10px 0 0;
}
.TD_album .TD_thumbimg .TD_thumbnail{
border:5px solid #eee;
}
.TD_album .TD_headline {
padding:0 5px 5px 0;
margin:0;
font-size:1.1em;
line-height:1.2em;
text-align:center;
}
/* 최신글 공통 */
.TD_recent .TD_thumbnail{
border:none;
}
/* 최신글의 더보기 */
.TD_more{
text-align:right;
padding:5px 5px 7px 5px;
margin:10px 5px;
color:#333;
border:1px solid #ddd;
background-color:#f5f5f5;
}
* html .TD_more{height:20px;}
.TD_more_title{
font-weight:bold;
float:left;
font-size:1.2em;
background:url(//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/ico_recent_title.gif) 0 0 no-repeat;
padding:0 0 0 25px;
}
.TD_more_btn{
font:0.9em dotum;
}
/* 최신글 텍스트 목록형 */
.TD_recent{
}
.TD_recent .TD_headline {
color:#000;
font-weight:normal;
padding:0;
font-size:1em;
}
.TD_recent .TD_list .TD_headline {
background:none;
}
.TD_recent .TD_list{
margin:5px;
background:url(//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/bull_rect.gif) 6px 9px no-repeat;
padding:3px 0 0 16px;
}
/* 최신글 섬네일 목록형 */
.TD_recent .TD_thumblist{
overflow:hidden;
margin:0px;
padding:5px;
}
.TD_recent .TD_thumblist .TD_headline{
clear:both;
font-weight:bold;
color:#000;
text-align:center;
}
.TD_recent .TD_thumblist .TD_summary{
padding:0;
text-align:center;
}
.TD_recent .TD_thumblist .TD_thumbnail{
border:5px solid #eee;
background-color:#eee;
text-align:center;
padding:0px;
}
/* 최신글 앨범형 */
.TD_recent .TD_album {
padding:0px;
margin:0 0 10px 0;
overflow:hidden;
text-align:center;
}
.TD_recent .TD_album .TD_thumbimg{
border:0;
padding:0;
margin:0 auto;
}
.TD_recent .TD_album .TD_headline {
height:14px;
overflow:hidden;
padding-top:4px;
}
/* 슬라이드형 */
.TD_slide{
margin:2px;
padding:0;
float:left;
}
.TD_slide .TD_thumbnail{
margin:0;
padding:0;
border:5px solid #eee;
}
.TD_slide img{
margin:0;
padding:0;
}
</style>
<script type="text/javascript">
//<![CDATA[
var ttDeskURL ='/plugins/tatterDesk';
var ttDeskBlogURL ='';
//]]>
</script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/ttDesk.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/lib/prototype.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/src/builder.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/src/effects.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/src/dragdrop.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/src/controls.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/src/slider.js'></script>
<script type="text/javascript" src='//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/js/ttDesklightbox.js'></script><link rel="stylesheet" type="text/css" href="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/style/menubar.css"/><style type="text/css">.tt_article_useless_p_margin p {padding-top:0 !important;padding-bottom:0 !important;margin-top:0 !important;margin-bottom:0 !important;}</style><meta name="referrer" content="always"><link rel="shortcut icon" href="http://i1.daumcdn.net/cfs.tistory/static/top/favicon_0630.ico"/><meta name="description" content="얼마전부터 이유식을 시작했다. 아직은 먹는 것 반 흘리는 것 반이지만 열심히 받아 먹는 게, 엄마 아빠가 숟가락 놀려가며 식사하는 모습을 옆에서 항상 유심히 관찰하던 걸로 보아 무척이나 따라 하고 싶었나 보다. 이유식을 이제 시작하는지라 아주 소량만 먹이고 있어 분유를 추가로 먹여야 하는데, 이유식을 먹은 직후엔 분유를 먹으려 들지 않아서 삼십분 정도 놀아준 후 분유를 먹인다. 이유식 드신 후 신이 난 서하...">
<!-- BEGIN OPENGRAPH -->
<link rel="canonical" href="http://iam312.pe.kr/526" /><meta property="og:type" content="article"><meta property="og:url" content="http://iam312.pe.kr/526" ><meta property="og:site_name" content="구시렁 구시렁" ><meta property="og:title" content="서하" ><meta name="by" content="옥탑방청년" ><meta property="og:description" content="얼마전부터 이유식을 시작했다. 아직은 먹는 것 반 흘리는 것 반이지만 열심히 받아 먹는 게, 엄마 아빠가 숟가락 놀려가며 식사하는 모습을 옆에서 항상 유심히 관찰하던 걸로 보아 무척이나 따라 하고 싶었나 보다. 이유식을 이제 시작하는지라 아주 소량만 먹이고 있어 분유를 추가로 먹여야 하는데, 이유식을 먹은 직후엔 분유를 먹으려 들지 않아서 삼십분 정도 놀아준 후 분유를 먹인다. 이유식 드신 후 신이 난 서하..." ><meta property="og:image" content="http://cfile7.uf.tistory.com/image/2616034F56C9CBDB04D189" >
<!-- END OPENGRAPH -->
<!-- BEGIN TWITTERCARD -->
<meta name="twitter:card" content="summary_large_image"><meta name="twitter:site" content="@TISTORY"><meta name="twitter:title" content="서하" ><meta name="twitter:description" content="얼마전부터 이유식을 시작했다. 아직은 먹는 것 반 흘리는 것 반이지만 열심히 받아 먹는 게, 엄마 아빠가 숟가락 놀려가며 식사하는 모습을 옆에서 항상 유심히 관찰하던 걸로 보아 무척이나 따라 하고 싶었나 보다. 이유식을 이제 시작하는지라 아주 소량만 먹이고 있어 분유를 추가로 먹여야 하는데, 이유식을 먹은 직후엔 분유를 먹으려 들지 않아서 삼십분 정도 놀아준 후 분유를 먹인다. 이유식 드신 후 신이 난 서하..." ><meta property="twitter:image" content="http://cfile7.uf.tistory.com/image/2616034F56C9CBDB04D189" >
<!-- END TWITTERCARD -->
<!-- BEGIN DAUMAPP -->
<meta property="dg:plink" content="http://iam312.pe.kr/526" ><meta name="plink" content="http://iam312.pe.kr/526" ><meta name="title" content="서하" ><meta name="article:media_name" content="구시렁 구시렁" ><meta property="article:mobile_url" content="http://iam312.pe.kr/m/526" ><meta property="article:pc_url" content="http://iam312.pe.kr/526" ><meta property="article:mobile_view_url" content="http://iam312.tistory.com/m/526" ><meta property="article:pc_view_url" content="http://iam312.tistory.com/526" ><meta property="article:pc_service_home" content="http://www.tistory.com" ><meta property="article:mobile_service_home" content="http://www.tistory.com/m" ><meta property="article:txid" content="17043_526" /><meta property="article:published_time" content="2016-02-21T23:45:10+09:00" ><meta property="og:regDate" content="20160221234510" ><meta property="article:modified_time" content="2016-02-22T00:11:55+09:00" >
<!-- END DAUMAPP -->
<!-- BEGIN STRUCTURED_DATA -->
<script type="application/ld+json">{"@context":"http://schema.org", "@type":"BlogPosting","mainEntityOfPage":{"@id": "http://iam312.pe.kr/526"},"url":"http://iam312.pe.kr/526","headline":"서하","description":"얼마전부터 이유식을 시작했다. 아직은 먹는 것 반 흘리는 것 반이지만 열심히 받아 먹는 게, 엄마 아빠가 숟가락 놀려가며 식사하는 모습을 옆에서 항상 유심히 관찰하던 걸로 보아 무척이나 따라 하고 싶었나 보다. 이유식을 이제 시작하는지라 아주 소량만 먹이고 있어 분유를 추가로 먹여야 하는데, 이유식을 먹은 직후엔 분유를 먹으려 들지 않아서 삼십분 정도 놀아준 후 분유를 먹인다. 이유식 드신 후 신이 난 서하...","author":{"@type":"Person","name":"옥탑방청년"},"image":{"@type":"ImageObject","url":"http://cfile7.uf.tistory.com/image/2616034F56C9CBDB04D189","width":"800px","height":"800px"},"datePublished":"20160221T23:45:10+09:00","dateModified":"20160222T00:11:55+09:00","publisher":{"@type":"Organization","name":"TISTORY","logo":{"@type":"ImageObject","url":"https://t1.daumcdn.net/cssjs/icon/557567EA016E200001","width":"800px","height":"800px"}}}</script>
<!-- END STRUCTURED_DATA -->
<link rel="apple-touch-icon" href="//i1.daumcdn.net/thumb/C180x180/?fname=http%3A%2F%2Fcfile6.uf.tistory.com%2Fimage%2F172EF542500A54FE083FC9">
<link rel="apple-touch-icon" sizes="76x76" href="//i1.daumcdn.net/thumb/C76x76/?fname=http%3A%2F%2Fcfile6.uf.tistory.com%2Fimage%2F172EF542500A54FE083FC9">
<link rel="apple-touch-icon" sizes="120x120" href="//i1.daumcdn.net/thumb/C120x120/?fname=http%3A%2F%2Fcfile6.uf.tistory.com%2Fimage%2F172EF542500A54FE083FC9">
<link rel="apple-touch-icon" sizes="152x152" href="//i1.daumcdn.net/thumb/C152x152/?fname=http%3A%2F%2Fcfile6.uf.tistory.com%2Fimage%2F172EF542500A54FE083FC9"></head>
<body id="tt-body-page">
<div id="ttDesk_AdminDiv">
<div class="ttDesk_dragcss"><h1><strong>태터데스크</strong> 관리자</h1>
<div><img src="//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/ico_guide.gif" alt="도움말" onclick="window.open('http://manual.tistory.com/730')" /></div>
<img src="//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/img_delete_module.gif" onclick="ttDesk_reloadClose(1);" alt="닫기" /></div>
<div id="ttDesk_AdminDivText"></div>
<div class="ttDesk_Btn">
<img src="//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/btn_apply.gif" alt="적용하기" onclick="ttDesk_reloadClose(1);" />
<img src="//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/plugins/tatterDesk/image/btn_makepage.gif" alt="첫페이지 만들기" onclick="ttDesk_CacheDelete();" />
</div>
</div>
<div id="ttDesk_alert">
<div class="ttDesk_alert_dragcss" >
<h1><strong>태터데스크</strong> 메시지</h1>
</div>
<div class="ttDesk_alert_content">
<div id="ttDesk_MSGText" class="ttDesk_massage">
저장하였습니다.
</div>
</div>
</div>
<script type="text/javascript">
T.config = {"TOP_SSL_URL":"https:\/\/www.tistory.com","PREVIEW":false,"ROLE":"guest","PREV_PAGE":"\/527","NEXT_PAGE":"\/525","BLOG":{"isDormancy":false,"title":"\uad6c\uc2dc\ub801 \uad6c\uc2dc\ub801"},"NEED_COMMENT_LOGIN":false,"COMMENT_LOGIN_CONFIRM_MESSAGE":"","LOGIN_URL":"https:\/\/www.tistory.com\/auth\/login\/?redirectUrl=http%3A%2F%2Fiam312.pe.kr%2F526","DEFAULT_URL":"http:\/\/iam312.pe.kr","USER":{"name":null,"homepage":null}};
</script>
<script type="text/javascript" src="//s1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/blog/script/blog/common.js"></script>
<script type="text/javascript" src="http://www.tistory.com/api/secondaryDomain/?callback=secondaryDomainLogin&dummy=1300698568"></script>
<div style="margin:0; padding:0; border:none; background:none; float:none; clear:none; z-index:0"></div>
<div id="dkIndex">
<!--웹접근성용 바로가기 링크 모음-->
<a href="#dkBody">본문 바로가기</a>
</div>
<div id="dkWrap" class="wrap_skin">
<!-- 카테고리버튼 클릭시 'navi_on' 클래스 부여 -->
<div id="dkHead" role="banner" class="area_head">
<h1 class="screen_out">구시렁 구시렁</h1>
<button type="button" class="btn_cate">
<span class="ico_skin ico_cate">카테고리</span>
</button>
<div class="area_search ">
<button type="button" class="btn_search">
<span class="ico_skin ico_search">검색하기</span>
</button>
<form action="#" method="get" class="frm_search box_search" onsubmit="try{window.location.href='/search/'+looseURIEncode(document.getElementsByName('search')[0].value);document.getElementsByName('search')[0].value='';return false;}catch(e){}">
<fieldset>
<legend class="screen_out">검색하기</legend>
<label for="search" class="lab_search screen_out">Search</label>
<input type="text" name="search" id="search" class="tf_search" placeholder="Search" value="" data-value="">
<span class="ico_skin ico_search"></span>
</fieldset>
</form>
</div>
<div class="area_profile">
<div class="tit_post">
<a href="/" class="link_post">구시렁 구시렁</a>
</div>
<span class="thumb_profile">
<img src="http://cfile6.uf.tistory.com/image/172EF542500A54FE083FC9" class="img_profile" alt="프로필사진">
</span>
<span class="txt_profile">옥탑방청년</span>
</div>
</div>
<hr class="hide">
<div id="dkContent" class="cont_skin" role="main">
<div id="cMain">
<div id="mFeature" class="wrap_sub">
<div class="cont_sub">
<div class="inner_sub">
<div class="area_sub">
<div role="navigation" class="area_navi">
<ul class="tt_category">
<li class="">
<a class="link_tit" href="/category">
분류 전체보기 all post <span class="c_cnt">(497)</span>
</a>
<ul class="category_list">
<li class="">
<a class="link_item" href="/category/주저리주저리">
주저리주저리 <span class="c_cnt">(108)</span>
</a>
</li>
<li class="">
<a class="link_item" href="/category/사진첩%20photo">
사진첩 photo <span class="c_cnt">(307)</span>
</a>
</li>
<li class="">
<a class="link_item" href="/category/tool%20for%20tools">
tool for tools <span class="c_cnt">(56)</span>
</a>
</li>
<li class="">
<a class="link_item" href="/category/LP판">
LP판 <span class="c_cnt">(23)</span>
</a>
</li>
<li class="">
<a class="link_item" href="/category/재테크">
재테크 <span class="c_cnt">(2)</span>
</a>
</li>
</ul>
</li>
</ul>
<a href="/guestbook" class="link_guestbook">Guestbook</a>
</div>
<div class="wrap_etc">
<div class="col_aside left_side">
<div class="box_aside">
<strong class="tit_aside">Notice</strong>
<ul class="list_board">
<li><a href="/notice/429" class="link_board">일러 두기</a></li>
</ul>
</div>
<div class="box_aside">
<strong class="tit_aside">Recent Posts</strong>
<ul class="list_board">
<li><a href="/556" class="link_board">서하</a></li>
<li><a href="/555" class="link_board">서하</a></li>
<li><a href="/554" class="link_board">서하</a></li>
<li><a href="/553" class="link_board">서하</a></li>
</ul>
</div>
<div class="box_aside">
<strong class="tit_aside">Recent Comments</strong>
<ul class="list_board">
<li><a href="/333#comment15995845" class="link_board">아, 댓글이 늦어서 죄송합니다..</a></li>
<li><a href="/333#comment15979271" class="link_board">저도 지금 해당질환 판정받아..</a></li>
<li><a href="/325#comment15795947" class="link_board">도움이 되셨다니 다행입니다.</a></li>
<li><a href="/325#comment15788034" class="link_board">나스가 죽어서 백업하려고 환..</a></li>
</ul>
</div>
<div class="box_aside">
<strong class="tit_aside">Link</strong>
<ul class="list_board">
<li><a href="http://500px.com/SamilKo" class="link_board" target="_blank">사진 / 500px 내 사진</a></li>
<li><a href="http://www.flickr.com/photos/samil-goh/" class="link_board" target="_blank">사진 / 플리커 내 사진</a></li>
<li><a href="http://olivepage.net/140091579172" class="link_board" target="_blank">사진 / 꽃사진 강좌</a></li>
<li><a href="http://www.visitkorea.or.kr" class="link_board" target="_blank">사진 / 한국관광공사 - 여행정..</a></li>
<li><a href="http://www.pentaxclub.com/" class="link_board" target="_blank">사진 / pentax club - 펜탁스..</a></li>
<li><a href="http://www.bdimitrov.de/kmp/" class="link_board" target="_blank">사진 / 펜탁스 기기 관련 정보</a></li>
<li><a href="http://home1.gte.net/vzeehbv4/html/pentax_primes.html" class="link_board" target="_blank">사진 / 펜탁스 단렌즈 평가</a></li>
<li><a href="http://home1.gte.net/vzeehbv4/html/pentax_zooms.html" class="link_board" target="_blank">사진 / 펜탁스 줌렌즈 평가</a></li>
<li><a href="http://www.mino.name/data/lens/nikon.cgi" class="link_board" target="_blank">사진 / 니콘 마운트 렌즈 정보</a></li>
<li><a href="http://www.photosynthesis.co.nz/nikon/serialno.html" class="link_board" target="_blank">사진 / 니콘 렌즈 분류</a></li>
<li><a href="http://photonart.com/Korean/index.htm" class="link_board" target="_blank">사진 / 인화지 판매</a></li>
<li><a href="http://photomichaelwolf.com/" class="link_board" target="_blank">사진가 / MICHAEL WOLF</a></li>
<li><a href="http://www.susanstripling.com/galleries.cfm" class="link_board" target="_blank">사진가 / Susan Stripling</a></li>
<li><a href="http://www.thinkwiki.org" class="link_board" target="_blank">개발 / ThinkWiki - 씽크패드..</a></li>
<li><a href="http://mining-yesterday.blogspot.com/2006/12/papers-about-google-technology.html" class="link_board" target="_blank">개발 / 구글 관련 기술 정리</a></li>
<li><a href="http://www-csli.stanford.edu/~hinrich/information-retrieval-book.html" class="link_board" target="_blank">개발 / stanford ir book</a></li>
<li><a href="http://www.cadvance.org/" class="link_board" target="_blank">개발 / XML</a></li>
<li><a href="http://philshop.co.kr" class="link_board" target="_blank">자전거 / 필샵 - 자전거 부품</a></li>
<li><a href="http://youngwonbike.com/" class="link_board" target="_blank">자전거 / 영원사이클</a></li>
<li><a href="http://www.wine2080.com/" class="link_board" target="_blank">잡다 / 과실주를 담가보자</a></li>
</ul>
</div>
</div>
<div class="col_aside right_side">
<div class="box_aside box_calendar">
<table class="tt-calendar" cellpadding="0" cellspacing="1" style="width: 100%; table-layout: fixed">
<caption class="cal_month">
<a href="/archive/201612" title="1개월 앞의 달력을 보여줍니다.">«</a>
<a href="/archive/201701"
title="현재 달의 달력을 보여줍니다.">2017/01</a>
<a href="/archive/201702" title="1개월 뒤의 달력을 보여줍니다.">»</a>
</caption>
<thead>
<tr>
<th class="cal_week2">일</th>
<th class="cal_week1">월</th>
<th class="cal_week1">화</th>
<th class="cal_week1">수</th>
<th class="cal_week1">목</th>
<th class="cal_week1">금</th>
<th class="cal_week1">토</th>
</tr>
</thead>
<tbody>
<tr class="cal_week cal_current_week">
<td class=" cal_day cal_day_sunday cal_day3">1</td>
<td class=" cal_day cal_day4">2</td>
<td class=" cal_day cal_day3">3</td>
<td class=" cal_day cal_day3">4</td>
<td class=" cal_day cal_day3">5</td>
<td class=" cal_day cal_day3">6</td>
<td class=" cal_day cal_day3">7</td>
</tr>
<tr class="cal_week">
<td class=" cal_day cal_day_sunday cal_day3">8</td>
<td class=" cal_day cal_day3">9</td>
<td class=" cal_day cal_day3">10</td>
<td class=" cal_day cal_day3">11</td>
<td class=" cal_day cal_day3">12</td>
<td class=" cal_day cal_day3">13</td>
<td class=" cal_day cal_day3">14</td>
</tr>
<tr class="cal_week">
<td class=" cal_day cal_day_sunday cal_day3">15</td>
<td class=" cal_day cal_day3">16</td>
<td class=" cal_day cal_day3">17</td>
<td class=" cal_day cal_day3">18</td>
<td class=" cal_day cal_day3">19</td>
<td class=" cal_day cal_day3">20</td>
<td class=" cal_day cal_day3">21</td>
</tr>
<tr class="cal_week">
<td class=" cal_day cal_day_sunday cal_day3">22</td>
<td class=" cal_day cal_day3">23</td>
<td class=" cal_day cal_day3">24</td>
<td class=" cal_day cal_day3">25</td>
<td class=" cal_day cal_day3">26</td>
<td class=" cal_day cal_day3">27</td>
<td class=" cal_day cal_day3">28</td>
</tr>
<tr class="cal_week">
<td class=" cal_day cal_day_sunday cal_day3">29</td>
<td class=" cal_day cal_day3">30</td>
<td class=" cal_day cal_day3">31</td>
<td class="cal_day2"> </td>
<td class="cal_day2"> </td>
<td class="cal_day2"> </td>
<td class="cal_day2"> </td>
</tr>
</tbody>
</table>
</div>
<div class="box_aside box_tag">
<strong class="tit_aside">Tags</strong>
<ul class="list_tag">
</ul>
<a href="/tag" class="link_more">more</a>
</div>
<div class="box_aside box_archive">
<strong class="tit_aside">Archives</strong>
<ul class="list_keep">
<li><a href="/archive/201612" class="link_keep">2016/12</a> (2)</li>
<li><a href="/archive/201611" class="link_keep">2016/11</a> (1)</li>
<li><a href="/archive/201610" class="link_keep">2016/10</a> (4)</li>
<li><a href="/archive/201607" class="link_keep">2016/07</a> (3)</li>
<li><a href="/archive/201606" class="link_keep">2016/06</a> (2)</li>
<li><a href="/archive/201605" class="link_keep">2016/05</a> (5)</li>
<li><a href="/archive/201604" class="link_keep">2016/04</a> (4)</li>
<li><a href="/archive/201603" class="link_keep">2016/03</a> (6)</li>
<li><a href="/archive/201602" class="link_keep">2016/02</a> (6)</li>
<li><a href="/archive/201508" class="link_keep">2015/08</a> (2)</li>
<li><a href="/archive/201507" class="link_keep">2015/07</a> (4)</li>
<li><a href="/archive/201506" class="link_keep">2015/06</a> (1)</li>
<li><a href="/archive/201505" class="link_keep">2015/05</a> (6)</li>
<li><a href="/archive/201504" class="link_keep">2015/04</a> (3)</li>
<li><a href="/archive/201503" class="link_keep">2015/03</a> (2)</li>
<li><a href="/archive/201502" class="link_keep">2015/02</a> (1)</li>
<li><a href="/archive/201412" class="link_keep">2014/12</a> (2)</li>
<li><a href="/archive/201407" class="link_keep">2014/07</a> (3)</li>
<li><a href="/archive/201406" class="link_keep">2014/06</a> (3)</li>
<li><a href="/archive/201405" class="link_keep">2014/05</a> (2)</li>
<li><a href="/archive/201404" class="link_keep">2014/04</a> (2)</li>
<li><a href="/archive/201403" class="link_keep">2014/03</a> (2)</li>
<li><a href="/archive/201402" class="link_keep">2014/02</a> (2)</li>
<li><a href="/archive/201401" class="link_keep">2014/01</a> (1)</li>
<li><a href="/archive/201312" class="link_keep">2013/12</a> (3)</li>
<li><a href="/archive/201311" class="link_keep">2013/11</a> (2)</li>
<li><a href="/archive/201310" class="link_keep">2013/10</a> (3)</li>
<li><a href="/archive/201306" class="link_keep">2013/06</a> (1)</li>
<li><a href="/archive/201305" class="link_keep">2013/05</a> (1)</li>
<li><a href="/archive/201304" class="link_keep">2013/04</a> (3)</li>
</ul>
</div>
<div class="box_aside box_visitor">
<dl class="list_visitor">
<dt>Today</dt>
<dd>1</dd>
</dl>
<dl class="list_total">
<dt>Total</dt>
<dd>293,449</dd>
</dl>
</div>
</div>
</div>
</div>
</div>
<button type="button" class="ico_skin btn_close">닫기</button>
<strong class="screen_out">관리 메뉴</strong>
<ul class="list_control">
<li><a href="/admin/entry/post" class="ico_skin link_write" title="글쓰기">글쓰기</a></li>
<li><a href="/guestbook" class="ico_skin link_memo" title="방명록">방명록</a></li>
<li><a href="http://iam312.pe.kr/rss" class="ico_skin link_rss" title="RSS">RSS</a></li>
<li><a href="/admin" class="ico_skin link_manage" title="관리">관리</a></li>
</ul>
</div>
</div>
<div id="mArticle" class="article_skin">
<div class="index_title">
<h2 class="tit_skin"><span class="txt_title">구시렁 구시렁</span></h2>
</div>
<h2 id="dkBody" class="screen_out">서하 본문</h2>
<div class="area_title">
<strong class="tit_category"><a href="/category/%EC%82%AC%EC%A7%84%EC%B2%A9%20photo">사진첩 photo</a></strong>
<h3 class="tit_post">서하</h3>
<span class="info_post">옥탑방청년
<span class="txt_bar"></span>2016.02.21 23:45
</span>
</div>
<div class="area_view">
<p>얼마전부터 이유식을 시작했다. 아직은 먹는 것 반 흘리는 것 반이지만 열심히 받아 먹는 게, 엄마 아빠가 숟가락 놀려가며 식사하는 모습을 옆에서 항상 유심히 관찰하던 걸로 보아 무척이나 따라 하고 싶었나 보다.</p>
<p><br /></p>
<p style="text-align: left; clear: none; float: none;"><span class="imageblock" style="display:inline-block;width:1000px;;height:auto;max-width:100%"><img src="http://cfile7.uf.tistory.com/image/2616034F56C9CBDB04D189" style="max-width:100%;height:auto" width="1000" height="750" filename="em5-_2218939.jpg" filemime="image/jpeg"/><span class="ExifInfo" style="display:block;margin-left:auto;margin-right:auto;text-align:left;"><span>E-M5<span class="exifBar"> | </span></span><span>Aperture priority<span class="exifBar"> | </span></span><span>Center-weighted average<span class="exifBar"> | </span></span><span>1/250sec<span class="exifBar"> | </span></span><span>F/1.7<span class="exifBar"> | </span></span><span>0.00 EV<span class="exifBar"> | </span></span><span>15.0mm<span class="exifBar"> | </span></span><span>ISO-800<span class="exifBar"> | </span></span><span>Flash did not fire, auto mode<span class="exifBar"> | </span></span><span>2016:02:21 10:07:21</span></span></span></p>
<p><br /></p>
<p>이유식을 이제 시작하는지라 아주 소량만 먹이고 있어 분유를 추가로 먹여야 하는데, 이유식을 먹은 직후엔 분유를 먹으려 들지 않아서 삼십분 정도 놀아준 후 분유를 먹인다.</p>
<p><br /></p>
<p style="text-align: left; clear: none; float: none;"><span class="imageblock" style="display:inline-block;width:600px;;height:auto;max-width:100%"><img src="http://cfile9.uf.tistory.com/image/24496D4F56C9CBDD335537" style="max-width:100%;height:auto" width="600" height="800" filename="em5-_2218976.jpg" filemime="image/jpeg"/><span class="ExifInfo" style="display:block;margin-left:auto;margin-right:auto;text-align:left;"><span>E-M5<span class="exifBar"> | </span></span><span>Aperture priority<span class="exifBar"> | </span></span><span>Center-weighted average<span class="exifBar"> | </span></span><span>1/320sec<span class="exifBar"> | </span></span><span>F/1.7<span class="exifBar"> | </span></span><span>0.00 EV<span class="exifBar"> | </span></span><span>15.0mm<span class="exifBar"> | </span></span><span>ISO-800<span class="exifBar"> | </span></span><span>Flash did not fire, auto mode<span class="exifBar"> | </span></span><span>2016:02:21 10:24:42</span></span></span></p>
<p>이유식 드신 후 신이 난 서하. 발을 구르고 난리다.<br /></p>
<p><br /></p>
<p>아내의 6개월 육아휴직이 오늘 부로 끝나고 내일부터 출근이라, 서하를 저녁에 처가 장모님께 맡기고 왔다. 집에 돌아오니 두고 간 서하 옷가지랑 장난감이 문득 눈에 들어오는데 맘이 짠하다. 서하가 집에 없으니 몸은 편하지만, 마음이 영 편치 않다.</p>
<p><br /></p>
<p><br /></p>
<p>올림푸스 olympus om-d e-m5, 파나소닉 panasonic 라이카 leica dg 수미룩스 summilux 1:1.7/15 asph</p>
<p><br /></p>
<p>끝.</p>
<p><br /></p><div style="width:100%;margin-top:30px;clear:both;height:30px"> <div class="entry-ccl" style="float:right;margin-top:0;height:0">
<a href="http://creativecommons.org/licenses/by/4.0/deed.ko" target="_blank" style="text-decoration: none">
<img id="ccl-icon-526-0" class="entry-ccl-by" src="//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/static/admin/editor/ccl_black01.png"
onmouseover="tistoryCcl.show(this, 3)"
onmouseout="tistoryCcl.hide()" alt="저작자 표시" style="width:15px;height:15px"/>
<!--
<rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<Work rdf:about="">
<license rdf:resource="http://creativecommons.org/licenses/by-fr/2.0/kr/" />
</Work>
<License rdf:about="http://creativecommons.org/licenses/by-fr/">
<permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<requires rdf:resource="http://web.resource.org/cc/Notice"/>
<requires rdf:resource="http://web.resource.org/cc/Attribution"/>
<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
</License>
</rdf:RDF>
-->
</a>
</div>
<script type="text/javascript">
if (/MSIE [0-6]\./.test(navigator.userAgent)) {
for (var i = 0; i <1; i++) {
var el = document.getElementById('ccl-icon-526-' + i);
el.style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src="' + el.src + '",sizingMethod="image")';
el.src = '//i1.daumcdn.net/cfs.tistory/resource/31af84d29ba3812992419948560bf75166d1287e/static/admin/form/s.gif';
}
}
</script>
<div style="width:31px;float:left;"><a href="/toolbar/popup/abuseReport/?entryId=526" onclick="window.open(this.href, 'tistoryThisBlogPopup', 'width=550, height=510, toolbar=no, menubar=no, status=no, scrollbars=no'); return false;"><img style="border:0" src="//t1.daumcdn.net/tistory_admin/static/ico/ico_spam_report.png" alt="신고"></a></div></div><div class="another_category another_category_color_gray">
<h4>'<a href="/category/사진첩%20photo">사진첩 photo</a>' 카테고리의 다른 글</h4>
<table>
<tr>
<th>
<a href="http://iam312.pe.kr/528" >서하</a> <span>(0)</span>
</th>
<td>
2016.02.28</td>
</tr>
<tr>
<th>
<a href="http://iam312.pe.kr/527" >첫 가족 사진</a> <span>(0)</span>
</th>
<td>
2016.02.28</td>
</tr>
<tr>
<th>
<a href="http://iam312.pe.kr/526" class ="current" >서하</a> <span>(4)</span>
</th>
<td>
2016.02.21</td>
</tr>
<tr>
<th>
<a href="http://iam312.pe.kr/525" >서하</a> <span>(0)</span>
</th>
<td>
2016.02.21</td>
</tr>
<tr>
<th>
<a href="http://iam312.pe.kr/524" >서하</a> <span>(0)</span>
</th>
<td>
2016.02.19</td>
</tr>
<tr>
<th>
<a href="http://iam312.pe.kr/523" >서하</a> <span>(0)</span>
</th>
<td>
2016.02.13</td>
</tr>
</table></div>
</div>
<div class="area_etc">
<strong class="screen_out">공유하기 링크</strong>
<ul class="list_share">
<li><a href="#none" class="ico_skin link_fb" data-service="facebook">페이스북</a></li>
<li><a href="#none" class="ico_skin link_ks" data-service="kakaostory">카카오스토리</a></li>
<li><a href="#none" class="ico_skin link_tw" data-service="twitter">트위터</a></li>
</ul>
</div>
<div class="area_related">
<strong class="tit_related">'사진첩 photo' Related Articles</strong>
<ul class="list_related">
<li class="thumb_type">
<a href="/528" class="link_related">
<span class="thumb_related">
<img src="//i1.daumcdn.net/thumb/C185x200/?fname=http://cfile6.uf.tistory.com/image/2609F34E56D3091018BE67" class="img_related" alt="">
</span>
<span class="txt_related">서하</span>
<span class="date_related">2016.02.28</span>
<span class="frame_related"></span>
</a>
</li>
<li class="thumb_type">
<a href="/527" class="link_related">
<span class="thumb_related">
<img src="//i1.daumcdn.net/thumb/C185x200/?fname=http://cfile26.uf.tistory.com/image/2717284D56D3086A1C9F5E" class="img_related" alt="">
</span>
<span class="txt_related">첫 가족 사진</span>
<span class="date_related">2016.02.28</span>
<span class="frame_related"></span>