-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.html
1112 lines (939 loc) · 105 KB
/
CHANGELOG.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>
<head>
<meta charset="utf-8"/>
</head>
<body>
<h1 id="changelog">Change Log</h1>
<h2 id="unreleased"><a href="https://github.com/olefredrik/Foundationpress/tree/HEAD">Unreleased</a></h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.6.2...HEAD">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Autoprefixer missing -webkit prefixes <a href="https://github.com/olefredrik/Foundationpress/issues/826">#826</a></li>
</ul>
<h2 id="v2.6.22016-06-09"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.6.2">v2.6.2</a> (2016–06–09)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.6.1...v2.6.2">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Advice on Excessively Large File Size? <a href="https://github.com/olefredrik/Foundationpress/issues/831">#831</a></li>
<li>no styles <a href="https://github.com/olefredrik/Foundationpress/issues/830">#830</a></li>
<li>OffCanvas menu -webkit- prefixes in Safari <a href="https://github.com/olefredrik/Foundationpress/issues/829">#829</a></li>
<li>npm install error <a href="https://github.com/olefredrik/Foundationpress/issues/827">#827</a></li>
<li>Responsive Menu not toggling <a href="https://github.com/olefredrik/Foundationpress/issues/825">#825</a></li>
<li>Mobile Menu Accordion Menu - Expand “active” submenu parent automatically <a href="https://github.com/olefredrik/Foundationpress/issues/822">#822</a></li>
<li>Google Fonts are being added automatically <a href="https://github.com/olefredrik/Foundationpress/issues/818">#818</a></li>
<li>NPM run production not working with node.js 6.1.0 (Solved) <a href="https://github.com/olefredrik/Foundationpress/issues/815">#815</a></li>
<li>Extra Question For Issues <a href="https://github.com/olefredrik/Foundationpress/issues/811">#811</a></li>
<li><?php Foundationpress_top_bar_r(); ?> not showing any pages <a href="https://github.com/olefredrik/Foundationpress/issues/810">#810</a></li>
<li>npm install error <a href="https://github.com/olefredrik/Foundationpress/issues/809">#809</a></li>
<li>php CodeSniffer not working - Windows 10 <a href="https://github.com/olefredrik/Foundationpress/issues/808">#808</a></li>
<li>path.js throw error, Path must be a string. Received ’ + inspect(path); <a href="https://github.com/olefredrik/Foundationpress/issues/807">#807</a></li>
<li>Logged in to my WP install via Browser Sync <a href="https://github.com/olefredrik/Foundationpress/issues/806">#806</a></li>
<li>Foundationpress installation via npm failed <a href="https://github.com/olefredrik/Foundationpress/issues/805">#805</a></li>
<li>Working with an “old” Foundationpress <a href="https://github.com/olefredrik/Foundationpress/issues/800">#800</a></li>
<li>Every little project requires 70,000 files? <a href="https://github.com/olefredrik/Foundationpress/issues/797">#797</a></li>
<li>Error trying to compile foundation.scss <a href="https://github.com/olefredrik/Foundationpress/issues/796">#796</a></li>
<li>can’t upload on external save via SFTP <a href="https://github.com/olefredrik/Foundationpress/issues/794">#794</a></li>
<li>top-bar fixed <a href="https://github.com/olefredrik/Foundationpress/issues/787">#787</a></li>
<li>Strange character ( ` ) appearing in site text - this theme only <a href="https://github.com/olefredrik/Foundationpress/issues/782">#782</a></li>
<li>Missing modules when running npm run build or npm install <a href="https://github.com/olefredrik/Foundationpress/issues/780">#780</a></li>
<li>BwoserSync not working on older project after installing new project <a href="https://github.com/olefredrik/Foundationpress/issues/779">#779</a></li>
<li>about template page-sidebar-right <a href="https://github.com/olefredrik/Foundationpress/issues/778">#778</a></li>
<li>Component loading issue when building SCSS. <a href="https://github.com/olefredrik/Foundationpress/issues/776">#776</a></li>
<li>Significance of this return after running “watch”? <a href="https://github.com/olefredrik/Foundationpress/issues/775">#775</a></li>
<li>More info on Motion UI <a href="https://github.com/olefredrik/Foundationpress/issues/772">#772</a></li>
<li>Install Foundationpress twice in one themes directory? <a href="https://github.com/olefredrik/Foundationpress/issues/769">#769</a></li>
<li>Sass Mixins with Foundationpress <a href="https://github.com/olefredrik/Foundationpress/issues/765">#765</a></li>
<li>errors in sitemap.xml due to functions.php <a href="https://github.com/olefredrik/Foundationpress/issues/753">#753</a></li>
<li>Adding a second menu to mobile nav? <a href="https://github.com/olefredrik/Foundationpress/issues/728">#728</a></li>
<li>Fonts issues. <a href="https://github.com/olefredrik/Foundationpress/issues/703">#703</a></li>
<li>Noob question regarding fonts and how to set them up <a href="https://github.com/olefredrik/Foundationpress/issues/702">#702</a></li>
<li>Push changes to server with Git, but with whole assets? <a href="https://github.com/olefredrik/Foundationpress/issues/700">#700</a></li>
<li>Reveal does not display properly on a page with right sidebar layout <a href="https://github.com/olefredrik/Foundationpress/issues/696">#696</a></li>
<li>Off canvas menu won’t open/reveal left <a href="https://github.com/olefredrik/Foundationpress/issues/682">#682</a></li>
<li>SCSS Not Compiling Because <a href="https://github.com/olefredrik/Foundationpress/issues/676">#676</a></li>
<li>PostInstall issues <a href="https://github.com/olefredrik/Foundationpress/issues/672">#672</a></li>
<li>How to make a sticky nav? <a href="https://github.com/olefredrik/Foundationpress/issues/653">#653</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Autoprefixer compability <a href="https://github.com/olefredrik/Foundationpress/pull/832">#832</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add foundation.css as editor styles <a href="https://github.com/olefredrik/Foundationpress/pull/828">#828</a> (<a href="https://github.com/derweili">derweili</a>)</li>
<li>Update cs_CZ.po <a href="https://github.com/olefredrik/Foundationpress/pull/823">#823</a> (<a href="https://github.com/vladodriver">vladodriver</a>)</li>
<li>Updated Issue Template with New Questions <a href="https://github.com/olefredrik/Foundationpress/pull/821">#821</a> (<a href="https://github.com/LukePettway">LukePettway</a>)</li>
<li>Add missing argument to fix travis CI build <a href="https://github.com/olefredrik/Foundationpress/pull/795">#795</a> (<a href="https://github.com/minihays">minihays</a>)</li>
<li>Fix typo in gulpfile <a href="https://github.com/olefredrik/Foundationpress/pull/793">#793</a> (<a href="https://github.com/perryst5">perryst5</a>)</li>
<li>Update german translation <a href="https://github.com/olefredrik/Foundationpress/pull/789">#789</a> (<a href="https://github.com/jgierer12">jgierer12</a>)</li>
<li>fix missing </div> tag <a href="https://github.com/olefredrik/Foundationpress/pull/788">#788</a> (<a href="https://github.com/jgierer12">jgierer12</a>)</li>
<li>remove favicon <a href="https://github.com/olefredrik/Foundationpress/pull/784">#784</a> (<a href="https://github.com/15emedoctor">15emedoctor</a>)</li>
<li>Create cs_CZ.po <a href="https://github.com/olefredrik/Foundationpress/pull/777">#777</a> (<a href="https://github.com/vladodriver">vladodriver</a>)</li>
<li>Take 2: Optimize responsive images for 3/4 and full width templates <a href="https://github.com/olefredrik/Foundationpress/pull/771">#771</a> (<a href="https://github.com/EricRihlmann">EricRihlmann</a>)</li>
<li>No download historical file by Travis <a href="https://github.com/olefredrik/Foundationpress/pull/770">#770</a> (<a href="https://github.com/mik-laj">mik-laj</a>)</li>
<li>Portuguese update (pt_PT) <a href="https://github.com/olefredrik/Foundationpress/pull/768">#768</a> (<a href="https://github.com/pedro-mendonca">pedro-mendonca</a>)</li>
</ul>
<h2 id="v2.6.12016-03-10"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.6.1">v2.6.1</a> (2016–03–10)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.6.0...v2.6.1">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Responsive images WP 4.4 <a href="https://github.com/olefredrik/Foundationpress/issues/607">#607</a></li>
<li>Stripping Image Classes <a href="https://github.com/olefredrik/Foundationpress/issues/532">#532</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Essential Grid Plugin on Mobile <a href="https://github.com/olefredrik/Foundationpress/issues/578">#578</a></li>
<li>Mobile Menu doesn’t load <a href="https://github.com/olefredrik/Foundationpress/issues/485">#485</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Remove local server url from gulpfile <a href="https://github.com/olefredrik/Foundationpress/pull/764">#764</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v2.6.02016-03-10"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.6.0">v2.6.0</a> (2016–03–10)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.5.1...v2.6.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Responsive images <a href="https://github.com/olefredrik/Foundationpress/pull/657">#657</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>bower components _global overriding scss/global/_setting <a href="https://github.com/olefredrik/Foundationpress/issues/762">#762</a></li>
<li>Fresh install changes to _settings.scss not cascading consistently <a href="https://github.com/olefredrik/Foundationpress/issues/760">#760</a></li>
<li>foundation.css file throw an 404 error on childthemes <a href="https://github.com/olefredrik/Foundationpress/issues/758">#758</a></li>
<li>Homepage replicate across all pages <a href="https://github.com/olefredrik/Foundationpress/issues/755">#755</a></li>
<li>Error messages always displayed when using Abide validation <a href="https://github.com/olefredrik/Foundationpress/issues/719">#719</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Bug fix settings file <a href="https://github.com/olefredrik/Foundationpress/pull/763">#763</a> (<a href="https://github.com/EricRihlmann">EricRihlmann</a>)</li>
<li>Add the new foundation color palette mixin <a href="https://github.com/olefredrik/Foundationpress/pull/761">#761</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v2.5.12016-03-08"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.5.1">v2.5.1</a> (2016–03–08)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.5.0...v2.5.1">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Dropdown Menu Arrows <a href="https://github.com/olefredrik/Foundationpress/issues/752">#752</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Foundationpress Grid <a href="https://github.com/olefredrik/Foundationpress/issues/751">#751</a></li>
<li>Git Ignores Files Inside Foundationpress Theme Folder. <a href="https://github.com/olefredrik/Foundationpress/issues/750">#750</a></li>
<li>gulp file errors, FP 2.5, npm run watch, Windows 7 x64 <a href="https://github.com/olefredrik/Foundationpress/issues/748">#748</a></li>
<li>Npm installation stop working… <a href="https://github.com/olefredrik/Foundationpress/issues/744">#744</a></li>
<li>Flexbox grid? <a href="https://github.com/olefredrik/Foundationpress/issues/741">#741</a></li>
<li>Incorrect GCC <a href="https://github.com/olefredrik/Foundationpress/issues/739">#739</a></li>
<li>Can’t add or style elements of main content <a href="https://github.com/olefredrik/Foundationpress/issues/736">#736</a></li>
<li>adding the UNCSS task in my gulpfile.js <a href="https://github.com/olefredrik/Foundationpress/issues/727">#727</a></li>
<li>Offcanvas menu not working <a href="https://github.com/olefredrik/Foundationpress/issues/720">#720</a></li>
<li>jquery.js conflict with popular wordpress plugins <a href="https://github.com/olefredrik/Foundationpress/issues/645">#645</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Feature/child theme support <a href="https://github.com/olefredrik/Foundationpress/pull/759">#759</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>fix sidebar search to use input-group <a href="https://github.com/olefredrik/Foundationpress/pull/757">#757</a> (<a href="https://github.com/ryanfrawley">ryanfrawley</a>)</li>
<li>Fix dropdown menu arrows <a href="https://github.com/olefredrik/Foundationpress/pull/754">#754</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Change off-canvas menu height to affect all menus <a href="https://github.com/olefredrik/Foundationpress/pull/747">#747</a> (<a href="https://github.com/bej-soan">bej-soan</a>)</li>
<li>Separate javascript files with semi-colon when concatenating <a href="https://github.com/olefredrik/Foundationpress/pull/746">#746</a> (<a href="https://github.com/jontro">jontro</a>)</li>
<li>Remove duplicate line from foundation.scss <a href="https://github.com/olefredrik/Foundationpress/pull/743">#743</a> (<a href="https://github.com/fourhexagons">fourhexagons</a>)</li>
</ul>
<h2 id="v2.5.02016-03-02"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.5.0">v2.5.0</a> (2016–03–02)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.4.0...v2.5.0">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Block Grid Not Working <a href="https://github.com/olefredrik/Foundationpress/issues/738">#738</a></li>
<li>Clean Install Problem <a href="https://github.com/olefredrik/Foundationpress/issues/737">#737</a></li>
<li>npm WARN package.json [email protected] No license field. <a href="https://github.com/olefredrik/Foundationpress/issues/734">#734</a></li>
<li>WP Search, show excerpts in search <a href="https://github.com/olefredrik/Foundationpress/issues/732">#732</a></li>
<li>anyone know what causes error:file to import not found or unreadable <a href="https://github.com/olefredrik/Foundationpress/issues/731">#731</a></li>
<li>Adding logo in center of Nav Bar <a href="https://github.com/olefredrik/Foundationpress/issues/730">#730</a></li>
<li>Using foundation columns in Wordpress visual editor? <a href="https://github.com/olefredrik/Foundationpress/issues/725">#725</a></li>
<li>libsass binding was not found - error <a href="https://github.com/olefredrik/Foundationpress/issues/724">#724</a></li>
<li>SASS/node error working with “old” FP 1.x projects alongside FP 2.x <a href="https://github.com/olefredrik/Foundationpress/issues/722">#722</a></li>
<li>how to style wordpress footer widgets <a href="https://github.com/olefredrik/Foundationpress/issues/706">#706</a></li>
<li>Top bar menu wonky with FP2.x <a href="https://github.com/olefredrik/Foundationpress/issues/704">#704</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Tethys Update (Foundation 6.2) <a href="https://github.com/olefredrik/Foundationpress/pull/742">#742</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Sticky posts bugfix <a href="https://github.com/olefredrik/Foundationpress/pull/733">#733</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
</ul>
<h2 id="v2.4.02016-02-11"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.4.0">v2.4.0</a> (2016–02–11)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.3.0...v2.4.0">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Duplicate jQuery <a href="https://github.com/olefredrik/Foundationpress/issues/669">#669</a></li>
<li>Menu not appearing for off-canvas on non mobile sizes <a href="https://github.com/olefredrik/Foundationpress/issues/650">#650</a></li>
<li>Second-level submenus don’t fly out <a href="https://github.com/olefredrik/Foundationpress/issues/634">#634</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Blog Title position in Top Bar <a href="https://github.com/olefredrik/Foundationpress/issues/721">#721</a></li>
<li>New menu <a href="https://github.com/olefredrik/Foundationpress/issues/716">#716</a></li>
<li>Reveal Modal <a href="https://github.com/olefredrik/Foundationpress/issues/712">#712</a></li>
<li>This is not full version of Foundationpress, when I installed it then I don’t see any style from foundation.css. Where is css and scss folder and other… <a href="https://github.com/olefredrik/Foundationpress/issues/711">#711</a></li>
<li>Off canvas mobile menu issue <a href="https://github.com/olefredrik/Foundationpress/issues/709">#709</a></li>
<li>Misc changes to consider <a href="https://github.com/olefredrik/Foundationpress/issues/708">#708</a></li>
<li>Top Bar CSS differs on newly installed Foundationpress…. <a href="https://github.com/olefredrik/Foundationpress/issues/705">#705</a></li>
<li>npm run package do not minify js <a href="https://github.com/olefredrik/Foundationpress/issues/695">#695</a></li>
<li>Where have all the Sass variables gone in Foundation 6? <a href="https://github.com/olefredrik/Foundationpress/issues/693">#693</a></li>
<li>Using Foundationpress in production on EC2 <a href="https://github.com/olefredrik/Foundationpress/issues/692">#692</a></li>
<li>Foundationpress install error <a href="https://github.com/olefredrik/Foundationpress/issues/691">#691</a></li>
<li>Run Watch/Build Issues <a href="https://github.com/olefredrik/Foundationpress/issues/690">#690</a></li>
<li>sorry for the dumb question, but how do you update <a href="https://github.com/olefredrik/Foundationpress/issues/689">#689</a></li>
<li>media breakpoints <a href="https://github.com/olefredrik/Foundationpress/issues/688">#688</a></li>
<li>Missing semicolon in SCSS produces a segmentation fault. <a href="https://github.com/olefredrik/Foundationpress/issues/686">#686</a></li>
<li>library/navigation.php <a href="https://github.com/olefredrik/Foundationpress/issues/685">#685</a></li>
<li>Can’t find topbar breakpoint in settings.scss <a href="https://github.com/olefredrik/Foundationpress/issues/684">#684</a></li>
<li>Old project with grunt: not able to make some change <a href="https://github.com/olefredrik/Foundationpress/issues/683">#683</a></li>
<li>gulpfile javascript build <a href="https://github.com/olefredrik/Foundationpress/issues/680">#680</a></li>
<li>SASS COMPILING ERROR <a href="https://github.com/olefredrik/Foundationpress/issues/679">#679</a></li>
<li>Plans for using SASS? <a href="https://github.com/olefredrik/Foundationpress/issues/678">#678</a></li>
<li>Default Topbar <a href="https://github.com/olefredrik/Foundationpress/issues/677">#677</a></li>
<li>Mobile Menu not working correctly. <a href="https://github.com/olefredrik/Foundationpress/issues/675">#675</a></li>
<li>off-canvas positioning <a href="https://github.com/olefredrik/Foundationpress/issues/671">#671</a></li>
<li>SCSS Documentation <a href="https://github.com/olefredrik/Foundationpress/issues/652">#652</a></li>
<li>woocommerce template overrides not working <a href="https://github.com/olefredrik/Foundationpress/issues/651">#651</a></li>
<li>Mobile Menu Customizer <a href="https://github.com/olefredrik/Foundationpress/issues/494">#494</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Remove caret for first-level menu <a href="https://github.com/olefredrik/Foundationpress/pull/723">#723</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Adagio improvements <a href="https://github.com/olefredrik/Foundationpress/pull/717">#717</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Fix topbar issues <a href="https://github.com/olefredrik/Foundationpress/pull/714">#714</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add reveal to the kitchen-sink template <a href="https://github.com/olefredrik/Foundationpress/pull/713">#713</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Wrong file name <a href="https://github.com/olefredrik/Foundationpress/pull/707">#707</a> (<a href="https://github.com/sylvhama">sylvhama</a>)</li>
<li>Navigation <a href="https://github.com/olefredrik/Foundationpress/pull/699">#699</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Move nav visibility classes from php to scss <a href="https://github.com/olefredrik/Foundationpress/pull/698">#698</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>npm run package now minifies css & js <a href="https://github.com/olefredrik/Foundationpress/pull/697">#697</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Added gulp clean tasks <a href="https://github.com/olefredrik/Foundationpress/pull/681">#681</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Remove this as we use CDN hosted jQuery <a href="https://github.com/olefredrik/Foundationpress/pull/670">#670</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v2.3.02015-12-31"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.3.0">v2.3.0</a> (2015–12–31)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.2.0...v2.3.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Fully-functional and easy-to-use Sticky Sidebar available <a href="https://github.com/olefredrik/Foundationpress/issues/571">#571</a></li>
<li>Adding FlexVideo automatically? Any idea? <a href="https://github.com/olefredrik/Foundationpress/issues/500">#500</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Bug on Off-canvas markup (parts/mobile-off-canvas.php) <a href="https://github.com/olefredrik/Foundationpress/issues/661">#661</a></li>
<li>validator errors <a href="https://github.com/olefredrik/Foundationpress/issues/614">#614</a></li>
<li>Sticky top bar causing page to spazz out <a href="https://github.com/olefredrik/Foundationpress/issues/577">#577</a></li>
<li>img_unautop is greedy <a href="https://github.com/olefredrik/Foundationpress/issues/95">#95</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>JSHint needs to be installed with gulp-jshint <a href="https://github.com/olefredrik/Foundationpress/issues/664">#664</a></li>
<li>No CSS in Child Theme <a href="https://github.com/olefredrik/Foundationpress/issues/663">#663</a></li>
<li>Issues with dependencies <a href="https://github.com/olefredrik/Foundationpress/issues/660">#660</a></li>
<li>populate composer.json <a href="https://github.com/olefredrik/Foundationpress/issues/659">#659</a></li>
<li>Sass error at watch command <a href="https://github.com/olefredrik/Foundationpress/issues/655">#655</a></li>
<li>gulp error notification <a href="https://github.com/olefredrik/Foundationpress/issues/654">#654</a></li>
<li>Exit status 8 while running npm install <a href="https://github.com/olefredrik/Foundationpress/issues/649">#649</a></li>
<li>How to commit WordPress database to Github or Bitbucket? <a href="https://github.com/olefredrik/Foundationpress/issues/648">#648</a></li>
<li>How to change topbar height? <a href="https://github.com/olefredrik/Foundationpress/issues/647">#647</a></li>
<li>Small issue with offcanvas menu <a href="https://github.com/olefredrik/Foundationpress/issues/646">#646</a></li>
<li>New WPCS rule (ValidVariableName.NotSnakeCase) causing build error <a href="https://github.com/olefredrik/Foundationpress/issues/643">#643</a></li>
<li>Having trouble committing project to BitBucket! <a href="https://github.com/olefredrik/Foundationpress/issues/638">#638</a></li>
<li>Prepping theme for deployment <a href="https://github.com/olefredrik/Foundationpress/issues/636">#636</a></li>
<li>Drilldown menu not working? <a href="https://github.com/olefredrik/Foundationpress/issues/635">#635</a></li>
<li>Initialize Desktop Navigation Later <a href="https://github.com/olefredrik/Foundationpress/issues/631">#631</a></li>
<li>Mobile Menu, all but first child <a href="https://github.com/olefredrik/Foundationpress/issues/627">#627</a></li>
<li>Error: File to import not found or unreadable <a href="https://github.com/olefredrik/Foundationpress/issues/624">#624</a></li>
<li>Can’t get stylesheets to build <a href="https://github.com/olefredrik/Foundationpress/issues/622">#622</a></li>
<li>archive.php check if sidebar exist <a href="https://github.com/olefredrik/Foundationpress/issues/517">#517</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Update to v2.3.0 <a href="https://github.com/olefredrik/Foundationpress/pull/668">#668</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>FP is based on Foundation 6 <a href="https://github.com/olefredrik/Foundationpress/pull/667">#667</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Gulpfile improvements <a href="https://github.com/olefredrik/Foundationpress/pull/666">#666</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Fix off canvas bug <a href="https://github.com/olefredrik/Foundationpress/pull/662">#662</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>add jshint to package and lint task to gulpfile on watch and build <a href="https://github.com/olefredrik/Foundationpress/pull/658">#658</a> (<a href="https://github.com/jimlongo56">jimlongo56</a>)</li>
<li>Foundation update <a href="https://github.com/olefredrik/Foundationpress/pull/656">#656</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Buttons editor <a href="https://github.com/olefredrik/Foundationpress/pull/642">#642</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Fix front template errors <a href="https://github.com/olefredrik/Foundationpress/pull/633">#633</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Spelling changes <a href="https://github.com/olefredrik/Foundationpress/pull/632">#632</a> (<a href="https://github.com/alexanderlperez">alexanderlperez</a>)</li>
<li>Added button for TinyMCE shortcodes with popup window <a href="https://github.com/olefredrik/Foundationpress/pull/630">#630</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Added missing angle bracket <a href="https://github.com/olefredrik/Foundationpress/pull/629">#629</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Added Wordpress Coding Standards Sniffs to Gulp <a href="https://github.com/olefredrik/Foundationpress/pull/626">#626</a> (<a href="https://github.com/josh-rathke">josh-rathke</a>)</li>
<li>Shortcode implementation <a href="https://github.com/olefredrik/Foundationpress/pull/625">#625</a> (<a href="https://github.com/josh-rathke">josh-rathke</a>)</li>
<li>Wrap youtube and vimeo vids in flex-video <a href="https://github.com/olefredrik/Foundationpress/pull/620">#620</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Changed WP sticky post class to .wp-sticky <a href="https://github.com/olefredrik/Foundationpress/pull/618">#618</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Fixed more instances of duplicate class attributes in templates <a href="https://github.com/olefredrik/Foundationpress/pull/617">#617</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Remove duplicate class in single template <a href="https://github.com/olefredrik/Foundationpress/pull/616">#616</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Closing divs in footer <a href="https://github.com/olefredrik/Foundationpress/pull/615">#615</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v2.2.02015-12-12"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.2.0">v2.2.0</a> (2015–12–12)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.1.0...v2.2.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Added Size Class Back Into Image Tag Within Content Body <a href="https://github.com/olefredrik/Foundationpress/pull/574">#574</a> (<a href="https://github.com/josh-rathke">josh-rathke</a>)</li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Font “reloading” after page load <a href="https://github.com/olefredrik/Foundationpress/issues/604">#604</a></li>
<li>Problems Mobile and Top Bar in FP6 <a href="https://github.com/olefredrik/Foundationpress/issues/598">#598</a></li>
<li>console error “typekit” <a href="https://github.com/olefredrik/Foundationpress/issues/590">#590</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Less settings than before? <a href="https://github.com/olefredrik/Foundationpress/issues/602">#602</a></li>
<li>npm WARN cannot run in wd / bower EACCES: permission denied, mkdir <a href="https://github.com/olefredrik/Foundationpress/issues/596">#596</a></li>
<li>npm ERR! Exit status 8 <a href="https://github.com/olefredrik/Foundationpress/issues/595">#595</a></li>
<li>npm ERR! argv “node” “/usr/bin/npm” “install” <a href="https://github.com/olefredrik/Foundationpress/issues/594">#594</a></li>
<li>gulp error <a href="https://github.com/olefredrik/Foundationpress/issues/589">#589</a></li>
<li>Title and favicon <a href="https://github.com/olefredrik/Foundationpress/issues/576">#576</a></li>
<li>Question on Gruntfile.js Line 200 <a href="https://github.com/olefredrik/Foundationpress/issues/575">#575</a></li>
<li>npm run watch taking a long time <a href="https://github.com/olefredrik/Foundationpress/issues/573">#573</a></li>
<li>BrowserSync not loading styles on mobile and ipad <a href="https://github.com/olefredrik/Foundationpress/issues/572">#572</a></li>
<li>Failed to load resource on subdirectory host www.example.com/subdir <a href="https://github.com/olefredrik/Foundationpress/issues/570">#570</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Add v2.2.0 <a href="https://github.com/olefredrik/Foundationpress/pull/613">#613</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update settings file <a href="https://github.com/olefredrik/Foundationpress/pull/612">#612</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Don’t render both topbar and offcanvas if no option is set in the cus… <a href="https://github.com/olefredrik/Foundationpress/pull/611">#611</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Don’t make any assumptions on fonts. Use Helvetica Neue as default <a href="https://github.com/olefredrik/Foundationpress/pull/610">#610</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update Foundation to v6.0.5 <a href="https://github.com/olefredrik/Foundationpress/pull/609">#609</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Improved foundation.scss file <a href="https://github.com/olefredrik/Foundationpress/pull/606">#606</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Duplicate $global-margin variable <a href="https://github.com/olefredrik/Foundationpress/pull/603">#603</a> (<a href="https://github.com/jcallery">jcallery</a>)</li>
<li>Update featured-image.php <a href="https://github.com/olefredrik/Foundationpress/pull/600">#600</a> (<a href="https://github.com/bej-soan">bej-soan</a>)</li>
<li>Fixed Undefined Variable Bug Found in #594 <a href="https://github.com/olefredrik/Foundationpress/pull/597">#597</a> (<a href="https://github.com/josh-rathke">josh-rathke</a>)</li>
<li>Gulp package task added <a href="https://github.com/olefredrik/Foundationpress/pull/593">#593</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Remove wp versions filter to support cdn caching <a href="https://github.com/olefredrik/Foundationpress/pull/592">#592</a> (<a href="https://github.com/KLVTZ">KLVTZ</a>)</li>
<li>Fixed JavaScript minify <a href="https://github.com/olefredrik/Foundationpress/pull/591">#591</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Add a new site to the showcase <a href="https://github.com/olefredrik/Foundationpress/pull/588">#588</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Made it easier to understand <a href="https://github.com/olefredrik/Foundationpress/pull/584">#584</a> (<a href="https://github.com/alexbohariuc">alexbohariuc</a>)</li>
</ul>
<h2 id="v2.1.02015-12-07"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.1.0">v2.1.0</a> (2015–12–07)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v2.0.0...v2.1.0">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>[2.0.0] not seeing offgrid in showcase <a href="https://github.com/olefredrik/Foundationpress/issues/585">#585</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Documentation <a href="https://github.com/olefredrik/Foundationpress/pull/587">#587</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add new sites to showcase <a href="https://github.com/olefredrik/Foundationpress/pull/586">#586</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Gulp <a href="https://github.com/olefredrik/Foundationpress/pull/583">#583</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Adden Romanian language files <a href="https://github.com/olefredrik/Foundationpress/pull/582">#582</a> (<a href="https://github.com/alexbohariuc">alexbohariuc</a>)</li>
<li>Remove excess closing div <a href="https://github.com/olefredrik/Foundationpress/pull/581">#581</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v2.0.02015-12-05"><a href="https://github.com/olefredrik/Foundationpress/tree/v2.0.0">v2.0.0</a> (2015–12–05)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.7.2...v2.0.0">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Gruntfile and fontawesome <a href="https://github.com/olefredrik/Foundationpress/issues/568">#568</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Initial Build Erroring <a href="https://github.com/olefredrik/Foundationpress/issues/558">#558</a></li>
<li>Trouble with the installation process <a href="https://github.com/olefredrik/Foundationpress/issues/547">#547</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Foundation 6 <a href="https://github.com/olefredrik/Foundationpress/pull/580">#580</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add OffGrid Magazine site to showcase <a href="https://github.com/olefredrik/Foundationpress/pull/579">#579</a> (<a href="https://github.com/KLVTZ">KLVTZ</a>)</li>
<li>Remove string replace task <a href="https://github.com/olefredrik/Foundationpress/pull/569">#569</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update changelog <a href="https://github.com/olefredrik/Foundationpress/pull/565">#565</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.7.22015-11-20"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.7.2">v1.7.2</a> (2015–11–20)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.7.1...v1.7.2">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Protocol Relative URL not compatible with CDN Rewrites <a href="https://github.com/olefredrik/Foundationpress/issues/546">#546</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Specify required version of Node.js <a href="https://github.com/olefredrik/Foundationpress/pull/564">#564</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.7.12015-11-20"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.7.1">v1.7.1</a> (2015–11–20)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.7.0...v1.7.1">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Let’s use autoprefixer for prefixing <a href="https://github.com/olefredrik/Foundationpress/issues/453">#453</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>1px to much page height (also in demo) <a href="https://github.com/olefredrik/Foundationpress/issues/557">#557</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Walker_Nav_Menu & Top_Bar_Walker class <a href="https://github.com/olefredrik/Foundationpress/issues/555">#555</a></li>
<li>Major struggles with npm / grunt / node-sass when working with old and new FP projects simultaneously <a href="https://github.com/olefredrik/Foundationpress/issues/553">#553</a></li>
<li>WooCommerce Login Issue <a href="https://github.com/olefredrik/Foundationpress/issues/551">#551</a></li>
<li>bower install not running <a href="https://github.com/olefredrik/Foundationpress/issues/550">#550</a></li>
<li>Different page layouts <a href="https://github.com/olefredrik/Foundationpress/issues/548">#548</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Fix the +1px page height issue caused by stickyfooter <a href="https://github.com/olefredrik/Foundationpress/pull/563">#563</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Disable protocol relative theme assets <a href="https://github.com/olefredrik/Foundationpress/pull/562">#562</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add Gitter chat icon to README <a href="https://github.com/olefredrik/Foundationpress/pull/561">#561</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Exclude WP VIP Restricted Functions in Codesniffer ruleset <a href="https://github.com/olefredrik/Foundationpress/pull/559">#559</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update readme: browsersync gruntfile line number <a href="https://github.com/olefredrik/Foundationpress/pull/552">#552</a> (<a href="https://github.com/rasmuserik">rasmuserik</a>)</li>
<li>Portuguese (pt_PT) translation update <a href="https://github.com/olefredrik/Foundationpress/pull/549">#549</a> (<a href="https://github.com/pedro-mendonca">pedro-mendonca</a>)</li>
<li>Update changelog <a href="https://github.com/olefredrik/Foundationpress/pull/545">#545</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.7.02015-11-07"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.7.0">v1.7.0</a> (2015–11–07)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.6.0...v1.7.0">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>npm run package is taking very long time <a href="https://github.com/olefredrik/Foundationpress/issues/538">#538</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Home page button highlighted as active <a href="https://github.com/olefredrik/Foundationpress/issues/537">#537</a></li>
<li>Sourcemaps in chrome not correct <a href="https://github.com/olefredrik/Foundationpress/issues/521">#521</a></li>
<li>Cannot Clone the repository and install with npm <a href="https://github.com/olefredrik/Foundationpress/issues/510">#510</a></li>
<li>npm ERR! code ELIFECYCLE / Failed at postinstall script <a href="https://github.com/olefredrik/Foundationpress/issues/501">#501</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Feature/autoprefixer <a href="https://github.com/olefredrik/Foundationpress/pull/544">#544</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Feature/package <a href="https://github.com/olefredrik/Foundationpress/pull/539">#539</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update changelog <a href="https://github.com/olefredrik/Foundationpress/pull/536">#536</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.6.02015-11-01"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.6.0">v1.6.0</a> (2015–11–01)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.5.1...v1.6.0">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>npm commands = compilation errors <a href="https://github.com/olefredrik/Foundationpress/issues/530">#530</a></li>
<li>Uncaught TypeError: $ is not a function <a href="https://github.com/olefredrik/Foundationpress/issues/526">#526</a></li>
<li>NPM recommended version? <a href="https://github.com/olefredrik/Foundationpress/issues/525">#525</a></li>
<li>Missing CSS/JS files when installed on Wordpress version 4.3.1 <a href="https://github.com/olefredrik/Foundationpress/issues/523">#523</a></li>
<li>Demo seems broken on IE9 <a href="https://github.com/olefredrik/Foundationpress/issues/519">#519</a></li>
<li>Grid not working perfectly… <a href="https://github.com/olefredrik/Foundationpress/issues/516">#516</a></li>
<li>Npm package <a href="https://github.com/olefredrik/Foundationpress/issues/514">#514</a></li>
<li>npm install errors <a href="https://github.com/olefredrik/Foundationpress/issues/512">#512</a></li>
<li>Theme not reading css <a href="https://github.com/olefredrik/Foundationpress/issues/511">#511</a></li>
<li>Button height problem <a href="https://github.com/olefredrik/Foundationpress/issues/506">#506</a></li>
<li>npm install completion blocked by Windows Firewall <a href="https://github.com/olefredrik/Foundationpress/issues/495">#495</a></li>
<li>Custom Grids? <a href="https://github.com/olefredrik/Foundationpress/issues/486">#486</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Feature/browser sync <a href="https://github.com/olefredrik/Foundationpress/pull/535">#535</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Updated dependencies <a href="https://github.com/olefredrik/Foundationpress/pull/533">#533</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Translation for Galician <a href="https://github.com/olefredrik/Foundationpress/pull/529">#529</a> (<a href="https://github.com/lauantai">lauantai</a>)</li>
<li>Added grunt-browser-sync <a href="https://github.com/olefredrik/Foundationpress/pull/528">#528</a> (<a href="https://github.com/colin-marshall">colin-marshall</a>)</li>
<li>Fix typo <a href="https://github.com/olefredrik/Foundationpress/pull/522">#522</a> (<a href="https://github.com/noskov">noskov</a>)</li>
<li>Update requirements description in readme <a href="https://github.com/olefredrik/Foundationpress/pull/515">#515</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Polish i18n <a href="https://github.com/olefredrik/Foundationpress/pull/513">#513</a> (<a href="https://github.com/Tymek">Tymek</a>)</li>
<li>Feature/documentation <a href="https://github.com/olefredrik/Foundationpress/pull/509">#509</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Reset changes in bower json <a href="https://github.com/olefredrik/Foundationpress/pull/508">#508</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.5.12015-10-10"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.5.1">v1.5.1</a> (2015–10–10)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.5.0...v1.5.1">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Feature/sticky footer <a href="https://github.com/olefredrik/Foundationpress/pull/483">#483</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Foundationpress will not install with Node.js version 4.0 <a href="https://github.com/olefredrik/Foundationpress/issues/461">#461</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>npm run package takes long time an failed <a href="https://github.com/olefredrik/Foundationpress/issues/497">#497</a></li>
<li>Installed w/ No Issues, but Styling/Layout Not Showing <a href="https://github.com/olefredrik/Foundationpress/issues/493">#493</a></li>
<li>Installation issues? <a href="https://github.com/olefredrik/Foundationpress/issues/481">#481</a></li>
<li>posts per page function not working on archive <a href="https://github.com/olefredrik/Foundationpress/issues/477">#477</a></li>
<li>Incompability issues with Node v.4.x.x <a href="https://github.com/olefredrik/Foundationpress/issues/475">#475</a></li>
<li>NPM build error <a href="https://github.com/olefredrik/Foundationpress/issues/468">#468</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Update bower.json <a href="https://github.com/olefredrik/Foundationpress/pull/507">#507</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Sass not SASS <a href="https://github.com/olefredrik/Foundationpress/pull/492">#492</a> (<a href="https://github.com/jpdevries">jpdevries</a>)</li>
<li>On pages that have the comments activated an additional JS file is ne… <a href="https://github.com/olefredrik/Foundationpress/pull/488">#488</a> (<a href="https://github.com/Larzans">Larzans</a>)</li>
<li>Update foundation.php <a href="https://github.com/olefredrik/Foundationpress/pull/487">#487</a> (<a href="https://github.com/alexbohariuc">alexbohariuc</a>)</li>
<li>Feature/documentation <a href="https://github.com/olefredrik/Foundationpress/pull/484">#484</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Updated changelog <a href="https://github.com/olefredrik/Foundationpress/pull/479">#479</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.5.02015-09-23"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.5.0">v1.5.0</a> (2015–09–23)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.4.0...v1.5.0">Full Changelog</a></p>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Off-canvas menu defaults not set properly <a href="https://github.com/olefredrik/Foundationpress/issues/447">#447</a></li>
<li>Woocommerce styles overwriting Foundations <a href="https://github.com/olefredrik/Foundationpress/issues/263">#263</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Clearly state what files are needed on server <a href="https://github.com/olefredrik/Foundationpress/issues/472">#472</a></li>
<li>Search for pages <a href="https://github.com/olefredrik/Foundationpress/issues/469">#469</a></li>
<li>Error on npm install <a href="https://github.com/olefredrik/Foundationpress/issues/465">#465</a></li>
<li>npm run watch fails <a href="https://github.com/olefredrik/Foundationpress/issues/460">#460</a></li>
<li>Files missing from Theme folder? <a href="https://github.com/olefredrik/Foundationpress/issues/459">#459</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Update/dev dependencies <a href="https://github.com/olefredrik/Foundationpress/pull/478">#478</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Feature/package theme for deployment <a href="https://github.com/olefredrik/Foundationpress/pull/474">#474</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Added the package command <a href="https://github.com/olefredrik/Foundationpress/pull/473">#473</a> (<a href="https://github.com/clearsitedesigns">clearsitedesigns</a>)</li>
<li>Fix out-of-the-box behavior of mobile layout <a href="https://github.com/olefredrik/Foundationpress/pull/471">#471</a> (<a href="https://github.com/skoldin">skoldin</a>)</li>
<li>Feature/featured image <a href="https://github.com/olefredrik/Foundationpress/pull/470">#470</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Tweaked the visual apperance of the front template <a href="https://github.com/olefredrik/Foundationpress/pull/463">#463</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Updated changelog <a href="https://github.com/olefredrik/Foundationpress/pull/458">#458</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.4.02015-09-07"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.4.0">v1.4.0</a> (2015–09–07)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.3.0...v1.4.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Isolating frontend dependencies. <a href="https://github.com/olefredrik/Foundationpress/issues/396">#396</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Sticky bar and Admin Bar <a href="https://github.com/olefredrik/Foundationpress/issues/452">#452</a></li>
<li>Fixed: The off-canvas mobile menu was not working correctly <a href="https://github.com/olefredrik/Foundationpress/pull/449">#449</a> (<a href="https://github.com/Larzans">Larzans</a>)</li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Updated version number to v1.4.0 <a href="https://github.com/olefredrik/Foundationpress/pull/457">#457</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Fix issue with wpadminbar overlap sticky topbar <a href="https://github.com/olefredrik/Foundationpress/pull/456">#456</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Feature/gitignore <a href="https://github.com/olefredrik/Foundationpress/pull/455">#455</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Folder Structure <a href="https://github.com/olefredrik/Foundationpress/pull/454">#454</a> (<a href="https://github.com/THEBRANDYMAN">THEBRANDYMAN</a>)</li>
<li>Changed wp_register_script to wp_enqueue_script <a href="https://github.com/olefredrik/Foundationpress/pull/450">#450</a> (<a href="https://github.com/JeremyEnglert">JeremyEnglert</a>)</li>
<li>Updated changelog <a href="https://github.com/olefredrik/Foundationpress/pull/448">#448</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.3.02015-09-03"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.3.0">v1.3.0</a> (2015–09–03)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.2.0...v1.3.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Main content columns dependent on existence of sidebar <a href="https://github.com/olefredrik/Foundationpress/issues/325">#325</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Unable to change bg color of topbar from settings <a href="https://github.com/olefredrik/Foundationpress/issues/377">#377</a></li>
<li>Main content columns dependent on existence of sidebar <a href="https://github.com/olefredrik/Foundationpress/issues/325">#325</a></li>
<li>Post Image Aligment <a href="https://github.com/olefredrik/Foundationpress/issues/110">#110</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Issues with WordPress Admin Panel <a href="https://github.com/olefredrik/Foundationpress/issues/441">#441</a></li>
<li>Download (zip) not working <a href="https://github.com/olefredrik/Foundationpress/issues/437">#437</a></li>
<li>Customising the Offcanvas Menu Walker <a href="https://github.com/olefredrik/Foundationpress/issues/434">#434</a></li>
<li>foundation not a function (offcanvas) <a href="https://github.com/olefredrik/Foundationpress/issues/393">#393</a></li>
<li>Top Bar and Tab Bar Sticky <a href="https://github.com/olefredrik/Foundationpress/issues/328">#328</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Update version number to v1.3.0 <a href="https://github.com/olefredrik/Foundationpress/pull/446">#446</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Main content columns no longer dependent on existence of sidebar <a href="https://github.com/olefredrik/Foundationpress/pull/445">#445</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Fix topbar styling bug <a href="https://github.com/olefredrik/Foundationpress/pull/444">#444</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add background position to featured image <a href="https://github.com/olefredrik/Foundationpress/pull/443">#443</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add support for featured image on pages <a href="https://github.com/olefredrik/Foundationpress/pull/442">#442</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Self host static content to be used for demo purposes <a href="https://github.com/olefredrik/Foundationpress/pull/440">#440</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add correct svg path <a href="https://github.com/olefredrik/Foundationpress/pull/439">#439</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Host graphics in assets folder instead of pointing to external ref at… <a href="https://github.com/olefredrik/Foundationpress/pull/438">#438</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update and simplify the readme file <a href="https://github.com/olefredrik/Foundationpress/pull/433">#433</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Updated changelog <a href="https://github.com/olefredrik/Foundationpress/pull/432">#432</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.2.02015-08-27"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.2.0">v1.2.0</a> (2015–08–27)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.1.0...v1.2.0">Full Changelog</a></p>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Off canvas or top-bar <a href="https://github.com/olefredrik/Foundationpress/issues/210">#210</a></li>
<li>Hooks overview <a href="https://github.com/olefredrik/Foundationpress/issues/140">#140</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>How to understand the current version? <a href="https://github.com/olefredrik/Foundationpress/issues/423">#423</a></li>
<li>Sub-menus not working properly <a href="https://github.com/olefredrik/Foundationpress/issues/417">#417</a></li>
<li>Sub-menus not working properly <a href="https://github.com/olefredrik/Foundationpress/issues/416">#416</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Feature/protocol relative theme assets <a href="https://github.com/olefredrik/Foundationpress/pull/430">#430</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Declare WooCommerce support <a href="https://github.com/olefredrik/Foundationpress/pull/428">#428</a> (<a href="https://github.com/cyberscribe">cyberscribe</a>)</li>
<li>Add WooCommerce support <a href="https://github.com/olefredrik/Foundationpress/pull/427">#427</a> (<a href="https://github.com/cyberscribe">cyberscribe</a>)</li>
<li>Correct typo in documentation <a href="https://github.com/olefredrik/Foundationpress/pull/425">#425</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Feature/gitignore <a href="https://github.com/olefredrik/Foundationpress/pull/424">#424</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Better pattern match for images to rebuild <a href="https://github.com/olefredrik/Foundationpress/pull/421">#421</a> (<a href="https://github.com/cyberscribe">cyberscribe</a>)</li>
<li>Feature/gitignore <a href="https://github.com/olefredrik/Foundationpress/pull/419">#419</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add info to package.json <a href="https://github.com/olefredrik/Foundationpress/pull/418">#418</a> (<a href="https://github.com/noskov">noskov</a>)</li>
<li>Updated changelog with v1.1.0 details <a href="https://github.com/olefredrik/Foundationpress/pull/414">#414</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
</ul>
<h2 id="v1.1.02015-08-17"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.1.0">v1.1.0</a> (2015–08–17)</h2>
<p><a href="https://github.com/olefredrik/Foundationpress/compare/v1.0.0...v1.1.0">Full Changelog</a></p>
<p><strong>Closed issues:</strong></p>
<ul>
<li>How to NOT install local bower & grunt? <a href="https://github.com/olefredrik/Foundationpress/issues/405">#405</a></li>
<li>Error with “npm run watch” <a href="https://github.com/olefredrik/Foundationpress/issues/399">#399</a></li>
<li>Semantic Versioning <a href="https://github.com/olefredrik/Foundationpress/issues/395">#395</a></li>
<li>Megamenu in TopBar <a href="https://github.com/olefredrik/Foundationpress/issues/353">#353</a></li>
<li>PHPCS gives different results than Travis CI when run locally with codesniffer ruleset <a href="https://github.com/olefredrik/Foundationpress/issues/352">#352</a></li>
<li>top-bar <a href="https://github.com/olefredrik/Foundationpress/issues/277">#277</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Feature/improve mobile navigation customizer <a href="https://github.com/olefredrik/Foundationpress/pull/413">#413</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add Customizer Option for Topbar or Offcanvas Mobile Menu <a href="https://github.com/olefredrik/Foundationpress/pull/411">#411</a> (<a href="https://github.com/AdamChlan">AdamChlan</a>)</li>
<li>solve image aligment in posts <a href="https://github.com/olefredrik/Foundationpress/pull/410">#410</a> (<a href="https://github.com/alexpetroni">alexpetroni</a>)</li>
<li>Added the possibility to show the off_canvas navigation on the right side <a href="https://github.com/olefredrik/Foundationpress/pull/407">#407</a> (<a href="https://github.com/Larzans">Larzans</a>)</li>
<li>Added changelog <a href="https://github.com/olefredrik/Foundationpress/pull/404">#404</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>check if function exists <a href="https://github.com/olefredrik/Foundationpress/pull/389">#389</a> (<a href="https://github.com/Stevie-Ray">Stevie-Ray</a>)</li>
</ul>
<h2 id="v1.0.02015-08-05"><a href="https://github.com/olefredrik/Foundationpress/tree/v1.0.0">v1.0.0</a> (2015–08–05)</h2>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Sidebar Menu support? <a href="https://github.com/olefredrik/Foundationpress/issues/200">#200</a></li>
<li>Breadcrumbs demo <a href="https://github.com/olefredrik/Foundationpress/issues/135">#135</a></li>
<li>Source maps for webkit Devel Tools <a href="https://github.com/olefredrik/Foundationpress/issues/75">#75</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Menu Icon not showing on mobile menu <a href="https://github.com/olefredrik/Foundationpress/issues/300">#300</a></li>
<li>add_filter(‘get_image_tag’, ‘Foundationpress_image_editor’, 0, 4) is removing the caption of the image <a href="https://github.com/olefredrik/Foundationpress/issues/276">#276</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Jquery never registered in enqueue-scripts.php and enqueued twice? <a href="https://github.com/olefredrik/Foundationpress/issues/397">#397</a></li>
<li>OffCanvas Children Not working When Mobile Nav is set to right <a href="https://github.com/olefredrik/Foundationpress/issues/394">#394</a></li>
<li>How to insert blog posts onto the home page? <a href="https://github.com/olefredrik/Foundationpress/issues/391">#391</a></li>
<li>Pass an existing project to another dev <a href="https://github.com/olefredrik/Foundationpress/issues/390">#390</a></li>
<li>What Modernizr component do we need? <a href="https://github.com/olefredrik/Foundationpress/issues/388">#388</a></li>
<li>cannot run in wd <a href="https://github.com/olefredrik/Foundationpress/issues/387">#387</a></li>
<li>NPM Error - Grunt Build <a href="https://github.com/olefredrik/Foundationpress/issues/386">#386</a></li>
<li>Foundationpress_fixed_img_caption_shortcode is being ignored <a href="https://github.com/olefredrik/Foundationpress/issues/383">#383</a></li>
<li>Backup Buddy Zip Process Fails Since Foundationpress Update <a href="https://github.com/olefredrik/Foundationpress/issues/381">#381</a></li>
<li>bower_components Folder is missing <a href="https://github.com/olefredrik/Foundationpress/issues/380">#380</a></li>
<li>Error with bower_components not found or unreadable <a href="https://github.com/olefredrik/Foundationpress/issues/379">#379</a></li>
<li>Top-bar / off-canvas parent link <a href="https://github.com/olefredrik/Foundationpress/issues/378">#378</a></li>
<li>Button Center <a href="https://github.com/olefredrik/Foundationpress/issues/376">#376</a></li>
<li>Error while running npm run watch <a href="https://github.com/olefredrik/Foundationpress/issues/375">#375</a></li>
<li>To create a blank page <a href="https://github.com/olefredrik/Foundationpress/issues/374">#374</a></li>
<li>Themes <a href="https://github.com/olefredrik/Foundationpress/issues/373">#373</a></li>
<li>Header Image not being displayed <a href="https://github.com/olefredrik/Foundationpress/issues/372">#372</a></li>
<li>[Feature Request] Add GitHub Theme URI: olefredrik/Foundationpress to style.css <a href="https://github.com/olefredrik/Foundationpress/issues/371">#371</a></li>
<li>Foundationpress crashes Netbeans 7.4 (or makes it stall) <a href="https://github.com/olefredrik/Foundationpress/issues/370">#370</a></li>
<li>Off Canvas Close on Click <a href="https://github.com/olefredrik/Foundationpress/issues/369">#369</a></li>
<li>Duplicating existing menus to create new ones <a href="https://github.com/olefredrik/Foundationpress/issues/368">#368</a></li>
<li>NPM run watch is not working! <a href="https://github.com/olefredrik/Foundationpress/issues/367">#367</a></li>
<li>how to change row width? <a href="https://github.com/olefredrik/Foundationpress/issues/365">#365</a></li>
<li>Pagination not working <a href="https://github.com/olefredrik/Foundationpress/issues/361">#361</a></li>
<li>Where to put custom functions? <a href="https://github.com/olefredrik/Foundationpress/issues/360">#360</a></li>
<li>double title tags <a href="https://github.com/olefredrik/Foundationpress/issues/359">#359</a></li>
<li>Two buttons in top bar <a href="https://github.com/olefredrik/Foundationpress/issues/358">#358</a></li>
<li>Grunt Vs. Gulp <a href="https://github.com/olefredrik/Foundationpress/issues/357">#357</a></li>
<li>Top Bar breakpoint <a href="https://github.com/olefredrik/Foundationpress/issues/355">#355</a></li>
<li>Top Menu and WP 4.3-alpha <a href="https://github.com/olefredrik/Foundationpress/issues/354">#354</a></li>
<li>How to pull off the transparent-to-fill top bar effect? <a href="https://github.com/olefredrik/Foundationpress/issues/351">#351</a></li>
<li>“missing script: watch” When Installing <a href="https://github.com/olefredrik/Foundationpress/issues/345">#345</a></li>
<li>WP admin Top bar showing over the top of the top menu bar <a href="https://github.com/olefredrik/Foundationpress/issues/342">#342</a></li>
<li>Foundation not installed when “npm install” is run <a href="https://github.com/olefredrik/Foundationpress/issues/341">#341</a></li>
<li>How to get top-bar container shadow to show up/take on top-level z-index? <a href="https://github.com/olefredrik/Foundationpress/issues/340">#340</a></li>
<li>Blog Page double search form <a href="https://github.com/olefredrik/Foundationpress/issues/333">#333</a></li>
<li>comments_template gone in Front Page <a href="https://github.com/olefredrik/Foundationpress/issues/332">#332</a></li>
<li>Watch changes on js files <a href="https://github.com/olefredrik/Foundationpress/issues/329">#329</a></li>
<li>Closing div row missing for search.php? <a href="https://github.com/olefredrik/Foundationpress/issues/327">#327</a></li>
<li>Bad stylesheet attribute id <a href="https://github.com/olefredrik/Foundationpress/issues/326">#326</a></li>
<li>Adding search to top-bar? <a href="https://github.com/olefredrik/Foundationpress/issues/324">#324</a></li>
<li>Woocommerce Support <a href="https://github.com/olefredrik/Foundationpress/issues/321">#321</a></li>
<li>Cannot see Foundationpress theme <a href="https://github.com/olefredrik/Foundationpress/issues/320">#320</a></li>
<li>Top Bar Navigation not showing in 796px width or below. <a href="https://github.com/olefredrik/Foundationpress/issues/318">#318</a></li>
<li>Missing translation <a href="https://github.com/olefredrik/Foundationpress/issues/313">#313</a></li>
<li>Removing JS components <a href="https://github.com/olefredrik/Foundationpress/issues/312">#312</a></li>
<li>Textdomain problem <a href="https://github.com/olefredrik/Foundationpress/issues/311">#311</a></li>
<li>Fatal error: <a href="https://github.com/olefredrik/Foundationpress/issues/308">#308</a></li>
<li>Loading sass.js tasks…ERROR <a href="https://github.com/olefredrik/Foundationpress/issues/306">#306</a></li>
<li>Foundationpress + Shared Hosting? <a href="https://github.com/olefredrik/Foundationpress/issues/305">#305</a></li>
<li>Top level menu items redirecting to index.php <a href="https://github.com/olefredrik/Foundationpress/issues/304">#304</a></li>
<li>.f-topbar-fixed Margin Top of 45px <a href="https://github.com/olefredrik/Foundationpress/issues/302">#302</a></li>
<li>wp admin bar not there and dropdown doesn’t work <a href="https://github.com/olefredrik/Foundationpress/issues/301">#301</a></li>
<li>Getting pagination work for a category template <a href="https://github.com/olefredrik/Foundationpress/issues/299">#299</a></li>
<li>comments.php error <a href="https://github.com/olefredrik/Foundationpress/issues/297">#297</a></li>
<li>WooThemes Sensei Support <a href="https://github.com/olefredrik/Foundationpress/issues/296">#296</a></li>
<li>Recommended Portfolio plugin that plays well with Foundationpress? <a href="https://github.com/olefredrik/Foundationpress/issues/295">#295</a></li>
<li>How to use full-width rows properly? <a href="https://github.com/olefredrik/Foundationpress/issues/293">#293</a></li>
<li>Issues importing custom scss file/ file to import not found or unreadable <a href="https://github.com/olefredrik/Foundationpress/issues/292">#292</a></li>
<li>Breakpoints for the top-bar toggle <a href="https://github.com/olefredrik/Foundationpress/issues/291">#291</a></li>
<li>unbound variable $medium-up on fresh install <a href="https://github.com/olefredrik/Foundationpress/issues/290">#290</a></li>
<li>Uncaught TypeError: Cannot read property ‘topbar’ of undefined <a href="https://github.com/olefredrik/Foundationpress/issues/289">#289</a></li>
<li>Editing sass with CodeKit problem <a href="https://github.com/olefredrik/Foundationpress/issues/287">#287</a></li>
<li>Pagination <a href="https://github.com/olefredrik/Foundationpress/issues/286">#286</a></li>
<li>Difficulties making Grunt work <a href="https://github.com/olefredrik/Foundationpress/issues/284">#284</a></li>
<li>Top item in dropdown shown twice on medium <a href="https://github.com/olefredrik/Foundationpress/issues/281">#281</a></li>
<li>How to add a Blog feed to a certain part of a page? <a href="https://github.com/olefredrik/Foundationpress/issues/275">#275</a></li>
<li>Dropping global dependencies for bower & grunt <a href="https://github.com/olefredrik/Foundationpress/issues/274">#274</a></li>
<li>How can we achieve this top-bar effect? <a href="https://github.com/olefredrik/Foundationpress/issues/272">#272</a></li>
<li>Javascript ignored by grunt process <a href="https://github.com/olefredrik/Foundationpress/issues/271">#271</a></li>
<li>How do you implement code into your WordPress pages? <a href="https://github.com/olefredrik/Foundationpress/issues/267">#267</a></li>
<li>Posts preview in 3 columns <a href="https://github.com/olefredrik/Foundationpress/issues/265">#265</a></li>
<li>Change breakpoint for topbar/tab-bar <a href="https://github.com/olefredrik/Foundationpress/issues/260">#260</a></li>
<li>Get typeerror when I tried to use foundation tabs or accordions <a href="https://github.com/olefredrik/Foundationpress/issues/259">#259</a></li>
<li>Interchange stopped working <a href="https://github.com/olefredrik/Foundationpress/issues/258">#258</a></li>
<li>How to display images from custom fields in a block grid <a href="https://github.com/olefredrik/Foundationpress/issues/257">#257</a></li>
<li>Display child pages in a block grid <a href="https://github.com/olefredrik/Foundationpress/issues/255">#255</a></li>
<li>Button groups shows “ghost margin” on small screens <a href="https://github.com/olefredrik/Foundationpress/issues/254">#254</a></li>
<li>Off canvas menu didn´t work on start page <a href="https://github.com/olefredrik/Foundationpress/issues/253">#253</a></li>
<li>where to put my own scss? <a href="https://github.com/olefredrik/Foundationpress/issues/252">#252</a></li>
<li>Multiple menus in mobile view <a href="https://github.com/olefredrik/Foundationpress/issues/251">#251</a></li>
<li>Off canavs multi level <a href="https://github.com/olefredrik/Foundationpress/issues/248">#248</a></li>
<li>Image Cleanup with Captions - Markup Output Issue <a href="https://github.com/olefredrik/Foundationpress/issues/245">#245</a></li>
<li>Enqueue jQuery before </head> ? <a href="https://github.com/olefredrik/Foundationpress/issues/243">#243</a></li>
<li>Content width on new install <a href="https://github.com/olefredrik/Foundationpress/issues/242">#242</a></li>
<li>Help understanding enqueue-scripts.php <a href="https://github.com/olefredrik/Foundationpress/issues/239">#239</a></li>
<li>Foundation Equalizer not working <a href="https://github.com/olefredrik/Foundationpress/issues/237">#237</a></li>
<li>[question] where to place custom SCSS files? <a href="https://github.com/olefredrik/Foundationpress/issues/235">#235</a></li>
<li>Change class on widget_search <a href="https://github.com/olefredrik/Foundationpress/issues/232">#232</a></li>
<li>Failed at [email protected] <a href="https://github.com/olefredrik/Foundationpress/issues/231">#231</a></li>
<li>Is there a ‘best’ way to set up <a href="https://github.com/olefredrik/Foundationpress/issues/230">#230</a></li>
<li>Calling Foundationpress_pagination in a custom query <a href="https://github.com/olefredrik/Foundationpress/issues/229">#229</a></li>
<li>Foundationpress folder structure <a href="https://github.com/olefredrik/Foundationpress/issues/228">#228</a></li>
<li>Bower error <a href="https://github.com/olefredrik/Foundationpress/issues/226">#226</a></li>
<li>customize woo commerce cat and single prod pages <a href="https://github.com/olefredrik/Foundationpress/issues/223">#223</a></li>
<li>How to customize woocommerce templates? <a href="https://github.com/olefredrik/Foundationpress/issues/220">#220</a></li>
<li>Examples of Foundationpress sites <a href="https://github.com/olefredrik/Foundationpress/issues/219">#219</a></li>
<li>Error: Cannot find module ‘node-sass’ <a href="https://github.com/olefredrik/Foundationpress/issues/217">#217</a></li>
<li>Where is app.scss in Foundationpress <a href="https://github.com/olefredrik/Foundationpress/issues/216">#216</a></li>
<li>Foundation press and plugins “revolution slider” <a href="https://github.com/olefredrik/Foundationpress/issues/213">#213</a></li>
<li>Cannot install npm in Foundationpress dir <a href="https://github.com/olefredrik/Foundationpress/issues/212">#212</a></li>
<li>Functions Conflict in Child theme <a href="https://github.com/olefredrik/Foundationpress/issues/211">#211</a></li>
<li>Loading “sass.js” tasks…ERROR <a href="https://github.com/olefredrik/Foundationpress/issues/209">#209</a></li>
<li>Error when run ‘npm install && bower install && grunt build’ instruction <a href="https://github.com/olefredrik/Foundationpress/issues/208">#208</a></li>
<li>Recommended SASS customizations? <a href="https://github.com/olefredrik/Foundationpress/issues/207">#207</a></li>
<li>Warning: call_user_func(); comment-template.php on line 1796 <a href="https://github.com/olefredrik/Foundationpress/issues/205">#205</a></li>
<li>remove whitespace only on start page didn´t work on mobile devices <a href="https://github.com/olefredrik/Foundationpress/issues/204">#204</a></li>
<li>Foundationpress_comments function not found? <a href="https://github.com/olefredrik/Foundationpress/issues/202">#202</a></li>
<li>Sourcemap not working <a href="https://github.com/olefredrik/Foundationpress/issues/199">#199</a></li>
<li>Changing border-radius of input border not working <a href="https://github.com/olefredrik/Foundationpress/issues/197">#197</a></li>
<li>Stick footer to bottom when page is empty <a href="https://github.com/olefredrik/Foundationpress/issues/196">#196</a></li>
<li>Strict Standards: Declaration of Foundationpress_comments::start_el() should be compatible with Walker_Comment::start_el() <a href="https://github.com/olefredrik/Foundationpress/issues/194">#194</a></li>
<li>Adding Custom Attribute To Menu Item to open modal <a href="https://github.com/olefredrik/Foundationpress/issues/190">#190</a></li>
<li>Can’t disable buttons component <a href="https://github.com/olefredrik/Foundationpress/issues/188">#188</a></li>
<li>[Clearing gallery] Applying Foundation’s Fix#3410 “the image shift” <a href="https://github.com/olefredrik/Foundationpress/issues/186">#186</a></li>
<li>comments.php loop error <a href="https://github.com/olefredrik/Foundationpress/issues/181">#181</a></li>
<li>Don’t load jquery 2.x for IE 8 <a href="https://github.com/olefredrik/Foundationpress/issues/178">#178</a></li>
<li>Foundationpress + Timber <a href="https://github.com/olefredrik/Foundationpress/issues/177">#177</a></li>
<li>WP Breadcrumb <a href="https://github.com/olefredrik/Foundationpress/issues/173">#173</a></li>
<li>foundation.css vs app.css <a href="https://github.com/olefredrik/Foundationpress/issues/172">#172</a></li>
<li>Grunt copies all JS files <a href="https://github.com/olefredrik/Foundationpress/issues/165">#165</a></li>
<li>errors installing npm & bower <a href="https://github.com/olefredrik/Foundationpress/issues/164">#164</a></li>
<li>customizing header <a href="https://github.com/olefredrik/Foundationpress/issues/163">#163</a></li>
<li>how to make my own javascript to work in front end <a href="https://github.com/olefredrik/Foundationpress/issues/162">#162</a></li>
<li>Editing js files does not update app.js even with grunt in watch mode <a href="https://github.com/olefredrik/Foundationpress/issues/158">#158</a></li>
<li>Anybody else getting hit with a bug for hide-for-small? <a href="https://github.com/olefredrik/Foundationpress/issues/156">#156</a></li>
<li>Problem with sticky Class in wordpress <a href="https://github.com/olefredrik/Foundationpress/issues/155">#155</a></li>
<li>Child theme <a href="https://github.com/olefredrik/Foundationpress/issues/154">#154</a></li>
<li>having an issue with the off canvas menu in iOS <a href="https://github.com/olefredrik/Foundationpress/issues/153">#153</a></li>
<li>ENOTFOUND Package not found when trying to install from bower <a href="https://github.com/olefredrik/Foundationpress/issues/151">#151</a></li>
<li>Foundationpress_pagination generates broken markup <a href="https://github.com/olefredrik/Foundationpress/issues/149">#149</a></li>
<li>Defer javascript <a href="https://github.com/olefredrik/Foundationpress/issues/148">#148</a></li>
<li>[SOLVED] Conflict with “Easy Foundation Shortcode” plugin <a href="https://github.com/olefredrik/Foundationpress/issues/147">#147</a></li>
<li>Equalizer <a href="https://github.com/olefredrik/Foundationpress/issues/146">#146</a></li>
<li>Icon Bar <a href="https://github.com/olefredrik/Foundationpress/issues/145">#145</a></li>
<li>_settings.php missing an asset when compiled <a href="https://github.com/olefredrik/Foundationpress/issues/142">#142</a></li>
<li>Login Box <a href="https://github.com/olefredrik/Foundationpress/issues/141">#141</a></li>
<li>Custom JS <a href="https://github.com/olefredrik/Foundationpress/issues/136">#136</a></li>
<li>test2 <a href="https://github.com/olefredrik/Foundationpress/issues/133">#133</a></li>
<li>Wordpress 4 <a href="https://github.com/olefredrik/Foundationpress/issues/132">#132</a></li>
<li>Adding uncss option to gruntfile <a href="https://github.com/olefredrik/Foundationpress/issues/131">#131</a></li>
<li>Adding function checks to make Foundationpress more Child Template friendly. <a href="https://github.com/olefredrik/Foundationpress/issues/129">#129</a></li>
<li>Sass when you work online <a href="https://github.com/olefredrik/Foundationpress/issues/128">#128</a></li>
<li>Too much styles default <a href="https://github.com/olefredrik/Foundationpress/issues/127">#127</a></li>
<li>Child theme or not? <a href="https://github.com/olefredrik/Foundationpress/issues/125">#125</a></li>
<li>Child Theme outputting duplicate CSS <a href="https://github.com/olefredrik/Foundationpress/issues/124">#124</a></li>
<li>Joyride init problem <a href="https://github.com/olefredrik/Foundationpress/issues/123">#123</a></li>
<li>app.min.js <a href="https://github.com/olefredrik/Foundationpress/issues/122">#122</a></li>
<li>js/vendor? <a href="https://github.com/olefredrik/Foundationpress/issues/121">#121</a></li>
<li>Child-Theme <a href="https://github.com/olefredrik/Foundationpress/issues/120">#120</a></li>
<li>How to update to a new version of Foundationpress? <a href="https://github.com/olefredrik/Foundationpress/issues/118">#118</a></li>
<li>Broken layout for IE9 <a href="https://github.com/olefredrik/Foundationpress/issues/117">#117</a></li>
<li>Wordpress 4.0 compatible? <a href="https://github.com/olefredrik/Foundationpress/issues/116">#116</a></li>
<li>Essential JS <a href="https://github.com/olefredrik/Foundationpress/issues/115">#115</a></li>
<li>error on compile with libsass and foundation 5.4.3 <a href="https://github.com/olefredrik/Foundationpress/issues/114">#114</a></li>
<li>What’s the better way to update? <a href="https://github.com/olefredrik/Foundationpress/issues/111">#111</a></li>
<li>Accessibility Issue - aria-hidden attribute on Off-Canvas wrap. <a href="https://github.com/olefredrik/Foundationpress/issues/108">#108</a></li>
<li>Off Canvas flashing with Meta Slider / Flex Slider <a href="https://github.com/olefredrik/Foundationpress/issues/106">#106</a></li>
<li>npm WARN package.json [email protected] No repository field. <a href="https://github.com/olefredrik/Foundationpress/issues/105">#105</a></li>
<li>Gallery only showing 5 images <a href="https://github.com/olefredrik/Foundationpress/issues/104">#104</a></li>
<li>number of columns <a href="https://github.com/olefredrik/Foundationpress/issues/102">#102</a></li>
<li>Thumbnails in grid view <a href="https://github.com/olefredrik/Foundationpress/issues/101">#101</a></li>
<li>Adding Livereload for SaSS ? <a href="https://github.com/olefredrik/Foundationpress/issues/99">#99</a></li>
<li>It’s not clear from the docs where to put your own js <a href="https://github.com/olefredrik/Foundationpress/issues/97">#97</a></li>
<li>Setting Top Bar colors ( topbar-link-bg-active ) is not working <a href="https://github.com/olefredrik/Foundationpress/issues/96">#96</a></li>
<li>Cannot get Foundation equalizer working <a href="https://github.com/olefredrik/Foundationpress/issues/94">#94</a></li>
<li>How to create a child theme? <a href="https://github.com/olefredrik/Foundationpress/issues/92">#92</a></li>
<li>Body class <a href="https://github.com/olefredrik/Foundationpress/issues/91">#91</a></li>
<li>Compiling everything except the SCSS files? <a href="https://github.com/olefredrik/Foundationpress/issues/90">#90</a></li>
<li>Button background on hover is always dark blue <a href="https://github.com/olefredrik/Foundationpress/issues/86">#86</a></li>
<li>Adding button at the end of right menu as list item <a href="https://github.com/olefredrik/Foundationpress/issues/84">#84</a></li>
<li>Off-canvas Menu Issue <a href="https://github.com/olefredrik/Foundationpress/issues/82">#82</a></li>
<li>How to compile SASS at end of app.css rather than beginning? <a href="https://github.com/olefredrik/Foundationpress/issues/81">#81</a></li>
<li>Question: How would I add a menu description to the menu walker? <a href="https://github.com/olefredrik/Foundationpress/issues/76">#76</a></li>
<li>When creating a child theme the stylesheets and icons are not loaded <a href="https://github.com/olefredrik/Foundationpress/issues/74">#74</a></li>
<li>Where are the translation file? <a href="https://github.com/olefredrik/Foundationpress/issues/73">#73</a></li>
<li>$tapbar-hamburger-icon-thickness <a href="https://github.com/olefredrik/Foundationpress/issues/72">#72</a></li>
<li>footer as real footer <a href="https://github.com/olefredrik/Foundationpress/issues/71">#71</a></li>
<li>Side bar on the left <a href="https://github.com/olefredrik/Foundationpress/issues/69">#69</a></li>
<li>SVGs don’t show up in Safari <a href="https://github.com/olefredrik/Foundationpress/issues/68">#68</a></li>
<li>404.php template is missing row div <a href="https://github.com/olefredrik/Foundationpress/issues/66">#66</a></li>
<li>Image referencing and paths <a href="https://github.com/olefredrik/Foundationpress/issues/65">#65</a></li>
<li>Menu disappearing in a category page (archive too) <a href="https://github.com/olefredrik/Foundationpress/issues/64">#64</a></li>
<li>App.scss Syntax error <a href="https://github.com/olefredrik/Foundationpress/issues/62">#62</a></li>
<li>Flickering Fixed Background Image in Chrome <a href="https://github.com/olefredrik/Foundationpress/issues/61">#61</a></li>
<li>Custom Starter Theme Creation like underscore site <a href="https://github.com/olefredrik/Foundationpress/issues/60">#60</a></li>
<li>Mobile and tablet devices’ menu not working <a href="https://github.com/olefredrik/Foundationpress/issues/58">#58</a></li>
<li>Invalid Markup: “Attribute pubdate not allowed on element time at this point.” <a href="https://github.com/olefredrik/Foundationpress/issues/57">#57</a></li>
<li>Entire layout is inside .off-canvas-wrap? <a href="https://github.com/olefredrik/Foundationpress/issues/56">#56</a></li>
<li>Making comments.php friendly to Jetpack comments <a href="https://github.com/olefredrik/Foundationpress/issues/55">#55</a></li>
<li>Install on Multisite Not Working Right <a href="https://github.com/olefredrik/Foundationpress/issues/54">#54</a></li>
<li>Installing Woocommerce plugin knocks out Foundation js <a href="https://github.com/olefredrik/Foundationpress/issues/53">#53</a></li>
<li>Sticky-Footer <a href="https://github.com/olefredrik/Foundationpress/issues/52">#52</a></li>
<li>Question With Forms <a href="https://github.com/olefredrik/Foundationpress/issues/51">#51</a></li>
<li>$(document).foundation seemingly called too soon <a href="https://github.com/olefredrik/Foundationpress/issues/50">#50</a></li>
<li>menu link not working <a href="https://github.com/olefredrik/Foundationpress/issues/49">#49</a></li>
<li>menu not link <a href="https://github.com/olefredrik/Foundationpress/issues/48">#48</a></li>
<li>100% width divs? <a href="https://github.com/olefredrik/Foundationpress/issues/47">#47</a></li>
<li>Off-Canvas not working <a href="https://github.com/olefredrik/Foundationpress/issues/46">#46</a></li>
<li>Menu breaks when WooCommerce is installed <a href="https://github.com/olefredrik/Foundationpress/issues/45">#45</a></li>
<li>Hide-for-small turning inline elements into blocks <a href="https://github.com/olefredrik/Foundationpress/issues/44">#44</a></li>
<li>jQuery in NoConflict Mode <a href="https://github.com/olefredrik/Foundationpress/issues/43">#43</a></li>
<li>Menu divider <a href="https://github.com/olefredrik/Foundationpress/issues/42">#42</a></li>
<li>Top bar with default primary wp menu <a href="https://github.com/olefredrik/Foundationpress/issues/41">#41</a></li>
<li>WooCommerce compatability <a href="https://github.com/olefredrik/Foundationpress/issues/40">#40</a></li>
<li>Permission denied (publickey). <a href="https://github.com/olefredrik/Foundationpress/issues/38">#38</a></li>
<li>Targeting list items in mobile off-canvas-toggle menu <a href="https://github.com/olefredrik/Foundationpress/issues/36">#36</a></li>
<li>Adding custom theme scripts to app.js <a href="https://github.com/olefredrik/Foundationpress/issues/33">#33</a></li>
<li>Add hooks to inject own code by using a childtheme or a plugin <a href="https://github.com/olefredrik/Foundationpress/issues/31">#31</a></li>
<li>Documentation Foundationpress <a href="https://github.com/olefredrik/Foundationpress/issues/30">#30</a></li>
<li>Use Compass <a href="https://github.com/olefredrik/Foundationpress/issues/29">#29</a></li>
<li>top-bar sticky nav <a href="https://github.com/olefredrik/Foundationpress/issues/28">#28</a></li>
<li>jQuery in Header Issue <a href="https://github.com/olefredrik/Foundationpress/issues/27">#27</a></li>
<li>Foundationpress Top Bar Hidden by Wordpress Admin bar when logged in. <a href="https://github.com/olefredrik/Foundationpress/issues/26">#26</a></li>
<li>foundation script <a href="https://github.com/olefredrik/Foundationpress/issues/25">#25</a></li>
<li>Loading jQuery in footer - some plugins have issues <a href="https://github.com/olefredrik/Foundationpress/issues/24">#24</a></li>
<li>Make strings translatable? <a href="https://github.com/olefredrik/Foundationpress/issues/23">#23</a></li>
<li>Why loop register_sidebar()? <a href="https://github.com/olefredrik/Foundationpress/issues/22">#22</a></li>
<li>Demo Data [mysql dump or wordpress export file] <a href="https://github.com/olefredrik/Foundationpress/issues/21">#21</a></li>
<li>Permission Denied <a href="https://github.com/olefredrik/Foundationpress/issues/20">#20</a></li>
<li>custom domain(s) <a href="https://github.com/olefredrik/Foundationpress/issues/18">#18</a></li>
<li>Failed to load resource: the server responded with a status of 404 (Not Found) <a href="https://github.com/olefredrik/Foundationpress/issues/17">#17</a></li>
<li>jQuery conflict? <a href="https://github.com/olefredrik/Foundationpress/issues/16">#16</a></li>
<li>foundation folder full of component scss files inside the js folder <a href="https://github.com/olefredrik/Foundationpress/issues/15">#15</a></li>
<li>No Search Results Does Not Load 404.php <a href="https://github.com/olefredrik/Foundationpress/issues/14">#14</a></li>
<li>jquery issues <a href="https://github.com/olefredrik/Foundationpress/issues/13">#13</a></li>
<li>Image caption bug <a href="https://github.com/olefredrik/Foundationpress/issues/12">#12</a></li>
<li>bug with function img_unautop <a href="https://github.com/olefredrik/Foundationpress/issues/11">#11</a></li>
<li>topbar-input-height variable missing <a href="https://github.com/olefredrik/Foundationpress/issues/9">#9</a></li>
<li>Adminbar overlaps mobile menu when width < 600px <a href="https://github.com/olefredrik/Foundationpress/issues/8">#8</a></li>
<li>Using CodeKit (mac) vs Grunt/Bower, etc… <a href="https://github.com/olefredrik/Foundationpress/issues/7">#7</a></li>
<li>IE8 support <a href="https://github.com/olefredrik/Foundationpress/issues/6">#6</a></li>
<li>jquery-ui-datepicker <a href="https://github.com/olefredrik/Foundationpress/issues/4">#4</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Introduce semantic versioning <a href="https://github.com/olefredrik/Foundationpress/pull/403">#403</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Add closing div row <a href="https://github.com/olefredrik/Foundationpress/pull/402">#402</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>
<li>Update versions for node-sass and grunt-sass. Move time-grunt to devD… <a href="https://github.com/olefredrik/Foundationpress/pull/400">#400</a> (<a href="https://github.com/olefredrik">olefredrik</a>)</li>