ktec-subtrac 0.1.16 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION.yml
CHANGED
data/bin/subtrac
CHANGED
@@ -16,7 +16,7 @@ command :install do |c|
|
|
16
16
|
c.description = 'Installation of default files required to host multipe development projects.'
|
17
17
|
c.example 'description', 'installs the default trac and svn setup'
|
18
18
|
c.option '-c','--clean', 'Performs a clean install'
|
19
|
-
c.option '-d','--defaults', 'Accept all defaults'
|
19
|
+
c.option '-d','--accept-defaults DEFAULTS', 'Accept all defaults'
|
20
20
|
c.when_called Subtrac::Commands::Install
|
21
21
|
end
|
22
22
|
|
data/lib/subtrac.rb
CHANGED
@@ -182,7 +182,6 @@ module Subtrac
|
|
182
182
|
# Install
|
183
183
|
def self.install(args,options)
|
184
184
|
puts "\n==== Installing development server files ===="
|
185
|
-
|
186
185
|
if options.defaults then
|
187
186
|
create_environment_directories(options.clean)
|
188
187
|
install_common_files()
|
@@ -194,7 +193,7 @@ module Subtrac
|
|
194
193
|
save_config()
|
195
194
|
else
|
196
195
|
# check where we are installing
|
197
|
-
change_install_dir = agree("The default installation directory is \"#{@install_dir}\". Would you like to change this? [Y/n]")
|
196
|
+
change_install_dir = agree("The default installation directory is \"#{@install_dir}\". Would you like to change this? [Y/n]")
|
198
197
|
@install_dir = ask("Where would you like to install this server?") if change_install_dir
|
199
198
|
|
200
199
|
unless !File.directory?(@install_dir)
|
@@ -123,7 +123,7 @@ a:active {
|
|
123
123
|
color: #111;
|
124
124
|
text-align: center;
|
125
125
|
margin: 0;
|
126
|
-
background: url(img/slogan.png) no-repeat center -16px;
|
126
|
+
background: url(../img/slogan.png) no-repeat center -16px;
|
127
127
|
padding-top: 30px;
|
128
128
|
}
|
129
129
|
|
@@ -138,7 +138,7 @@ a:active {
|
|
138
138
|
padding: 1px 0 2px;
|
139
139
|
text-indent: 0;
|
140
140
|
text-align: center;
|
141
|
-
background: url(img/more.png) no-repeat;
|
141
|
+
background: url(../img/more.png) no-repeat;
|
142
142
|
font: bold 13px/26px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
143
143
|
text-transform: lowercase;
|
144
144
|
color: #ccc;
|
@@ -211,18 +211,18 @@ a:active {
|
|
211
211
|
|
212
212
|
html {
|
213
213
|
background-color: #333;
|
214
|
-
background-image: url(img/body-home.png);
|
214
|
+
background-image: url(../img/body-home.png);
|
215
215
|
}
|
216
216
|
|
217
217
|
body {
|
218
|
-
background: #fff url(img/body.png) repeat 0 0;
|
218
|
+
background: #fff url(../img/body.png) repeat 0 0;
|
219
219
|
font: 12px/18px "Lucida Grande", Verdana, sans-serif;
|
220
220
|
color: #333;
|
221
221
|
text-shadow: #fff 0 1px 1px;
|
222
222
|
}
|
223
223
|
|
224
224
|
body#home {
|
225
|
-
background: url(img/body-home.png) repeat 0 0;
|
225
|
+
background: url(../img/body-home.png) repeat 0 0;
|
226
226
|
}
|
227
227
|
|
228
228
|
/* @end */
|
@@ -233,7 +233,7 @@ body#home {
|
|
233
233
|
width: 660px;
|
234
234
|
margin: -180px auto 0;
|
235
235
|
padding: 30px 30px 0;
|
236
|
-
background: url(img/content.png) no-repeat 0 0;
|
236
|
+
background: url(../img/content.png) no-repeat 0 0;
|
237
237
|
min-height: 400px;
|
238
238
|
}
|
239
239
|
|
@@ -246,7 +246,7 @@ body#home {
|
|
246
246
|
}
|
247
247
|
|
248
248
|
.product #content {
|
249
|
-
background: url(img/content-product.png) no-repeat right 0;
|
249
|
+
background: url(../img/content-product.png) no-repeat right 0;
|
250
250
|
padding: 10px 10px 0;
|
251
251
|
width: 700px;
|
252
252
|
min-height: 500px;
|
@@ -258,7 +258,7 @@ body#home {
|
|
258
258
|
height: 40px;
|
259
259
|
font: bold 13px/36px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
260
260
|
text-transform: lowercase;
|
261
|
-
background: #ccc url(img/sec-navigation.png) repeat-x;
|
261
|
+
background: #ccc url(../img/sec-navigation.png) repeat-x;
|
262
262
|
-webkit-border-top-right-radius: 7px;
|
263
263
|
-webkit-border-top-left-radius: 7px;
|
264
264
|
-moz-border-radius-topright: 7px;
|
@@ -275,7 +275,7 @@ body#home {
|
|
275
275
|
#sec-navigation li {
|
276
276
|
padding-right: 2px;
|
277
277
|
float: left;
|
278
|
-
background: url(img/sec-navigation-li.png) no-repeat right 0;
|
278
|
+
background: url(../img/sec-navigation-li.png) no-repeat right 0;
|
279
279
|
}
|
280
280
|
|
281
281
|
#sec-navigation li.first {
|
@@ -342,7 +342,7 @@ li#sn-rss {
|
|
342
342
|
li#sn-rss a {
|
343
343
|
color: #fff;
|
344
344
|
text-shadow: #c60 0 1px 1px;
|
345
|
-
background: url(img/rss.png) no-repeat right 10px;
|
345
|
+
background: url(../img/rss.png) no-repeat right 10px;
|
346
346
|
padding-right: 19px;
|
347
347
|
padding-left: 0;
|
348
348
|
margin-right: 10px;
|
@@ -363,7 +363,7 @@ li#sn-rss a span {
|
|
363
363
|
float: left;
|
364
364
|
padding-left: 10px;
|
365
365
|
padding-right: 7px;
|
366
|
-
background: url(img/rss-span.png) no-repeat 0 9px;
|
366
|
+
background: url(../img/rss-span.png) no-repeat 0 9px;
|
367
367
|
}
|
368
368
|
|
369
369
|
/* @end */
|
@@ -391,7 +391,7 @@ li#sn-search input {
|
|
391
391
|
padding: 5px 7px;
|
392
392
|
vertical-align: top;
|
393
393
|
height: 17px;
|
394
|
-
background: url(img/search.png) no-repeat 0 0;
|
394
|
+
background: url(../img/search.png) no-repeat 0 0;
|
395
395
|
opacity: .9;
|
396
396
|
font: 11px/16px "Lucida Grande", Verdana, sans-serif;
|
397
397
|
color: #666;
|
@@ -412,7 +412,7 @@ li#sn-search input:focus {
|
|
412
412
|
|
413
413
|
#sec-navigation li#sn-archive a {
|
414
414
|
padding-right: 33px;
|
415
|
-
background: url(img/archive.png) no-repeat right 17px;
|
415
|
+
background: url(../img/archive.png) no-repeat right 17px;
|
416
416
|
}
|
417
417
|
|
418
418
|
#sec-navigation li#sn-archive.selected a {
|
@@ -453,17 +453,17 @@ li#sn-search input:focus {
|
|
453
453
|
#sn-archive-popup ul li {
|
454
454
|
padding: 0 11px;
|
455
455
|
width: 180px;
|
456
|
-
background: url(img/archive-li.png) repeat-y center 0;
|
456
|
+
background: url(../img/archive-li.png) repeat-y center 0;
|
457
457
|
float: none;
|
458
458
|
}
|
459
459
|
|
460
460
|
#sn-archive-popup ul li.first {
|
461
|
-
background: url(img/archive-li-first.png) no-repeat center 0;
|
461
|
+
background: url(../img/archive-li-first.png) no-repeat center 0;
|
462
462
|
padding-top: 10px;
|
463
463
|
}
|
464
464
|
|
465
465
|
#sn-archive-popup ul li.last {
|
466
|
-
background: url(img/archive-li-last.png) no-repeat center bottom;
|
466
|
+
background: url(../img/archive-li-last.png) no-repeat center bottom;
|
467
467
|
padding-top: 17px;
|
468
468
|
padding-bottom: 16px;
|
469
469
|
}
|
@@ -472,7 +472,7 @@ li#sn-search input:focus {
|
|
472
472
|
display: block;
|
473
473
|
float: none;
|
474
474
|
padding: 0 15px;
|
475
|
-
background: url(img/archive-li-hover.png) repeat-x 0 20px;
|
475
|
+
background: url(../img/archive-li-hover.png) repeat-x 0 20px;
|
476
476
|
color: #333;
|
477
477
|
}
|
478
478
|
|
@@ -529,11 +529,11 @@ li#sn-search input:focus {
|
|
529
529
|
/* @group wrapper */
|
530
530
|
|
531
531
|
#wrapper {
|
532
|
-
background: url(img/wrapper.png) repeat-x 0 0;
|
532
|
+
background: url(../img/wrapper.png) repeat-x 0 0;
|
533
533
|
}
|
534
534
|
|
535
535
|
#home #wrapper {
|
536
|
-
background: url(img/wrapper-home.png) repeat-x 0 0;
|
536
|
+
background: url(../img/wrapper-home.png) repeat-x 0 0;
|
537
537
|
}
|
538
538
|
|
539
539
|
/* @end */
|
@@ -542,7 +542,7 @@ li#sn-search input:focus {
|
|
542
542
|
|
543
543
|
#header {
|
544
544
|
height: 340px;
|
545
|
-
background: url(img/header.png) no-repeat 50% 0;
|
545
|
+
background: url(../img/header.png) no-repeat 50% 0;
|
546
546
|
}
|
547
547
|
|
548
548
|
#home #header {
|
@@ -571,14 +571,14 @@ li#sn-search input:focus {
|
|
571
571
|
#home #products {
|
572
572
|
height: auto;
|
573
573
|
overflow: hidden;
|
574
|
-
background: url(img/products-li-large.png) no-repeat center 0;
|
574
|
+
background: url(../img/products-li-large.png) no-repeat center 0;
|
575
575
|
}
|
576
576
|
|
577
577
|
#products li {
|
578
578
|
float: left;
|
579
579
|
width: 220px;
|
580
580
|
padding: 5px 20px 5px 0;
|
581
|
-
background: url(img/products-li.png) no-repeat 229px center;
|
581
|
+
background: url(../img/products-li.png) no-repeat 229px center;
|
582
582
|
}
|
583
583
|
|
584
584
|
#home #products li {
|
@@ -625,27 +625,27 @@ li#product-tfi,
|
|
625
625
|
}
|
626
626
|
|
627
627
|
#product-s a {
|
628
|
-
background-image: url(img/scribbles-small-name.png);
|
628
|
+
background-image: url(../img/scribbles-small-name.png);
|
629
629
|
}
|
630
630
|
|
631
631
|
#product-tfi a {
|
632
|
-
background-image: url(img/tweetiei-small-name.png);
|
632
|
+
background-image: url(../img/tweetiei-small-name.png);
|
633
633
|
}
|
634
634
|
|
635
635
|
#product-tfm a {
|
636
|
-
background-image: url(img/tweetiem-small-name.png);
|
636
|
+
background-image: url(../img/tweetiem-small-name.png);
|
637
637
|
}
|
638
638
|
|
639
639
|
#home #product-s a {
|
640
|
-
background-image: url(img/scribbles-large-name.png);
|
640
|
+
background-image: url(../img/scribbles-large-name.png);
|
641
641
|
}
|
642
642
|
|
643
643
|
#home #product-tfi a {
|
644
|
-
background-image: url(img/tweetiei-large-name.png);
|
644
|
+
background-image: url(../img/tweetiei-large-name.png);
|
645
645
|
}
|
646
646
|
|
647
647
|
#home #product-tfm a {
|
648
|
-
background-image: url(img/tweetiem-large-name.png);
|
648
|
+
background-image: url(../img/tweetiem-large-name.png);
|
649
649
|
}
|
650
650
|
|
651
651
|
#products a img {
|
@@ -672,7 +672,7 @@ li#product-tfi,
|
|
672
672
|
width: 740px;
|
673
673
|
margin: 0 auto 9px;
|
674
674
|
height: 61px;
|
675
|
-
background: url(img/masthead.png) no-repeat center bottom;
|
675
|
+
background: url(../img/masthead.png) no-repeat center bottom;
|
676
676
|
}
|
677
677
|
|
678
678
|
/* @group navigation */
|
@@ -688,13 +688,13 @@ li#product-tfi,
|
|
688
688
|
#navigation li {
|
689
689
|
float: left;
|
690
690
|
padding-right: 2px;
|
691
|
-
background: url(img/nav-li.png) no-repeat right 0;
|
691
|
+
background: url(../img/nav-li.png) no-repeat right 0;
|
692
692
|
}
|
693
693
|
|
694
694
|
#navigation li a {
|
695
695
|
float: left;
|
696
696
|
padding: 1px 20px 5px;
|
697
|
-
background: url(img/nav-a.png) repeat-x 0 0;
|
697
|
+
background: url(../img/nav-a.png) repeat-x 0 0;
|
698
698
|
color: #666;
|
699
699
|
}
|
700
700
|
|
@@ -721,7 +721,7 @@ li#product-tfi,
|
|
721
721
|
}
|
722
722
|
|
723
723
|
#navigation li.first a {
|
724
|
-
background: url(img/nav-a-first.png) no-repeat 0 0;
|
724
|
+
background: url(../img/nav-a-first.png) no-repeat 0 0;
|
725
725
|
padding-left: 22px;
|
726
726
|
}
|
727
727
|
|
@@ -731,7 +731,7 @@ li#product-tfi,
|
|
731
731
|
}
|
732
732
|
|
733
733
|
#navigation li.last a {
|
734
|
-
background: url(img/nav-a-last.png) no-repeat right 0;
|
734
|
+
background: url(../img/nav-a-last.png) no-repeat right 0;
|
735
735
|
padding-right: 22px;
|
736
736
|
}
|
737
737
|
|
@@ -748,7 +748,7 @@ h1 a {
|
|
748
748
|
display: block;
|
749
749
|
width: 100px;
|
750
750
|
height: 40px;
|
751
|
-
background: url(img/logo.png) no-repeat 0 1px;
|
751
|
+
background: url(../img/logo.png) no-repeat 0 1px;
|
752
752
|
text-indent: 150%;
|
753
753
|
overflow: hidden;
|
754
754
|
opacity: .75;
|
@@ -776,7 +776,7 @@ h1 a:active {
|
|
776
776
|
#footer {
|
777
777
|
padding: 20px 0;
|
778
778
|
height: 20px;
|
779
|
-
background: url(img/footer.png) repeat-x 0 0;
|
779
|
+
background: url(../img/footer.png) repeat-x 0 0;
|
780
780
|
font: bold 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
781
781
|
color: #999;
|
782
782
|
text-shadow: #222 0 -1px 1px;
|
@@ -784,7 +784,7 @@ h1 a:active {
|
|
784
784
|
}
|
785
785
|
|
786
786
|
#home #footer {
|
787
|
-
background: url(img/slogan.png) no-repeat center -46px;
|
787
|
+
background: url(../img/slogan.png) no-repeat center -46px;
|
788
788
|
}
|
789
789
|
|
790
790
|
#footer ul {
|
@@ -842,7 +842,7 @@ h1 a:active {
|
|
842
842
|
padding: 23px 20px 7px;
|
843
843
|
float: right;
|
844
844
|
height: 141px;
|
845
|
-
background: url(img/contact-gs.png) no-repeat;
|
845
|
+
background: url(../img/contact-gs.png) no-repeat;
|
846
846
|
font: bold 13px/16px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
847
847
|
color: #bce1f3;
|
848
848
|
text-shadow: #069 0 -1px 1px;
|
@@ -867,7 +867,7 @@ h1 a:active {
|
|
867
867
|
-webkit-border-radius: 5px;
|
868
868
|
-moz-border-radius: 5px;
|
869
869
|
border-radius: 5px;
|
870
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
870
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
871
871
|
width: 438px;
|
872
872
|
margin-bottom: 20px;
|
873
873
|
height: 165px;
|
@@ -958,7 +958,7 @@ h1 a:active {
|
|
958
958
|
text-indent: 150%;
|
959
959
|
overflow: hidden;
|
960
960
|
white-space: nowrap;
|
961
|
-
background-image: url(img/gallery-nav.png);
|
961
|
+
background-image: url(../img/gallery-nav.png);
|
962
962
|
}
|
963
963
|
|
964
964
|
#p-newer a {
|
@@ -1010,7 +1010,7 @@ h1 a:active {
|
|
1010
1010
|
font: 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1011
1011
|
margin-bottom: 50px;
|
1012
1012
|
padding: 0 90px 30px;
|
1013
|
-
background: url(img/entry.png) no-repeat center bottom;
|
1013
|
+
background: url(../img/entry.png) no-repeat center bottom;
|
1014
1014
|
text-shadow: none;
|
1015
1015
|
}
|
1016
1016
|
|
@@ -1038,7 +1038,7 @@ h1 a:active {
|
|
1038
1038
|
-webkit-border-radius: 5px;
|
1039
1039
|
-moz-border-radius: 5px;
|
1040
1040
|
border-radius: 5px;
|
1041
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
1041
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
1042
1042
|
}
|
1043
1043
|
|
1044
1044
|
.entry center img {
|
@@ -1068,7 +1068,7 @@ h1 a:active {
|
|
1068
1068
|
-moz-border-radius: 5px;
|
1069
1069
|
border-radius: 5px;
|
1070
1070
|
border: 1px solid #ccc;
|
1071
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
1071
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
1072
1072
|
padding: 10px 20px;
|
1073
1073
|
}
|
1074
1074
|
|
@@ -1159,7 +1159,7 @@ h1 a:active {
|
|
1159
1159
|
-webkit-border-radius: 5px;
|
1160
1160
|
-moz-border-radius: 5px;
|
1161
1161
|
border-radius: 5px;
|
1162
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
1162
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
1163
1163
|
margin: 0;
|
1164
1164
|
}
|
1165
1165
|
|
@@ -1201,7 +1201,7 @@ h1 a:active {
|
|
1201
1201
|
text-indent: 150%;
|
1202
1202
|
overflow: hidden;
|
1203
1203
|
white-space: nowrap;
|
1204
|
-
background-image: url(img/gallery-nav.png);
|
1204
|
+
background-image: url(../img/gallery-nav.png);
|
1205
1205
|
}
|
1206
1206
|
|
1207
1207
|
#gallery a.prev-slide {
|
@@ -1290,7 +1290,7 @@ h1 a:active {
|
|
1290
1290
|
-webkit-border-radius: 5px;
|
1291
1291
|
-moz-border-radius: 5px;
|
1292
1292
|
border-radius: 5px;
|
1293
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
1293
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
1294
1294
|
}
|
1295
1295
|
|
1296
1296
|
#buy-button a {
|
@@ -1302,7 +1302,7 @@ h1 a:active {
|
|
1302
1302
|
text-transform: uppercase;
|
1303
1303
|
height: 41px;
|
1304
1304
|
margin-bottom: 5px;
|
1305
|
-
background: url(img/buy-button.png) no-repeat 0 0;
|
1305
|
+
background: url(../img/buy-button.png) no-repeat 0 0;
|
1306
1306
|
padding: 1px 0;
|
1307
1307
|
}
|
1308
1308
|
|
@@ -1493,7 +1493,7 @@ h1 a:active {
|
|
1493
1493
|
margin-left: -350px;
|
1494
1494
|
width: 220px;
|
1495
1495
|
height: 41px;
|
1496
|
-
background: url(img/calltoaction.png) no-repeat 0 0;
|
1496
|
+
background: url(../img/calltoaction.png) no-repeat 0 0;
|
1497
1497
|
font: bold 13px/36px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1498
1498
|
text-shadow: #333 0 -1px 1px;
|
1499
1499
|
text-transform: lowercase;
|
@@ -1541,19 +1541,19 @@ h1 a:active {
|
|
1541
1541
|
}
|
1542
1542
|
|
1543
1543
|
#cta-buy {
|
1544
|
-
background: url(img/calltoaction-sep.png) no-repeat 109px center;
|
1544
|
+
background: url(../img/calltoaction-sep.png) no-repeat 109px center;
|
1545
1545
|
}
|
1546
1546
|
|
1547
1547
|
#cta-download {
|
1548
|
-
background: url(img/calltoaction-sep.png) no-repeat -1px center;
|
1548
|
+
background: url(../img/calltoaction-sep.png) no-repeat -1px center;
|
1549
1549
|
}
|
1550
1550
|
|
1551
1551
|
#cta-buy a {
|
1552
|
-
background-image: url(img/calltoaction-buy.png);
|
1552
|
+
background-image: url(../img/calltoaction-buy.png);
|
1553
1553
|
}
|
1554
1554
|
|
1555
1555
|
#cta-download a {
|
1556
|
-
background-image: url(img/calltoaction-download.png);
|
1556
|
+
background-image: url(../img/calltoaction-download.png);
|
1557
1557
|
}
|
1558
1558
|
|
1559
1559
|
#calltoaction a:hover,
|
@@ -1598,7 +1598,7 @@ h1 a:active {
|
|
1598
1598
|
padding: 6px 10px;
|
1599
1599
|
top: -50px;
|
1600
1600
|
left: 0;
|
1601
|
-
background: url(img/tweetie-mac/introductory.png) no-repeat 0 0;
|
1601
|
+
background: url(../img/tweetie-mac/introductory.png) no-repeat 0 0;
|
1602
1602
|
font-size: 12px;
|
1603
1603
|
color: #fff;
|
1604
1604
|
line-height: 14px;
|
@@ -1654,15 +1654,15 @@ h1 a:active {
|
|
1654
1654
|
}
|
1655
1655
|
|
1656
1656
|
#scribbles.product h2 a {
|
1657
|
-
background-image: url(img/scribbles-large-name.png);
|
1657
|
+
background-image: url(../img/scribbles-large-name.png);
|
1658
1658
|
}
|
1659
1659
|
|
1660
1660
|
#tweetie-mac.product h2 a {
|
1661
|
-
background-image: url(img/tweetiem-large-name.png);
|
1661
|
+
background-image: url(../img/tweetiem-large-name.png);
|
1662
1662
|
}
|
1663
1663
|
|
1664
1664
|
#tweetie-iphone.product h2 a {
|
1665
|
-
background-image: url(img/tweetiei-large-name.png);
|
1665
|
+
background-image: url(../img/tweetiei-large-name.png);
|
1666
1666
|
}
|
1667
1667
|
|
1668
1668
|
.product h2 a img {
|
@@ -1728,7 +1728,7 @@ h1 a:active {
|
|
1728
1728
|
-webkit-border-radius: 5px;
|
1729
1729
|
-moz-border-radius: 5px;
|
1730
1730
|
border-radius: 5px;
|
1731
|
-
background: #eee url(img/inner.png) repeat-x 0 0;
|
1731
|
+
background: #eee url(../img/inner.png) repeat-x 0 0;
|
1732
1732
|
padding: 19px 19px 10px;
|
1733
1733
|
margin-top: 5px !important;
|
1734
1734
|
margin-bottom: 20px;
|
@@ -69,7 +69,7 @@
|
|
69
69
|
|
70
70
|
|
71
71
|
<div class="entry" id="post-119">
|
72
|
-
<h3><a href="
|
72
|
+
<h3><a href="#" rel="bookmark">Twitter Groups</a></h3>
|
73
73
|
<p class="posted"></p>
|
74
74
|
<p><p>Sed sapien elit, commodo aliquet, tristique at, molestie ut, orci. Aliquam eget erat. Nulla congue urna ut felis. Cras mauris. Proin mauris nulla, malesuada sit amet, luctus a, condimentum gravida, ante.</p>
|
75
75
|
<h3>Nulla risus justo</h3>
|