123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
- <!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
- <!-- You may use this file to transfer that content from one site to another. -->
- <!-- This file is not intended to serve as a complete backup of your site. -->
-
- <!-- To import this information into a WordPress site follow these steps: -->
- <!-- 1. Log in to that site as an administrator. -->
- <!-- 2. Go to Tools: Import in the WordPress admin panel. -->
- <!-- 3. Install the "WordPress" importer from the list. -->
- <!-- 4. Activate & Run Importer. -->
- <!-- 5. Upload this file using the form provided on that page. -->
- <!-- 6. You will first be asked to map the authors in this export file to users -->
- <!-- on the site. For each author, you may choose to map to an -->
- <!-- existing user on the site or to create a new user. -->
- <!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
- <!-- contained in this file into your site. -->
-
- <!-- generator="WordPress/4.6.1" created="2016-10-18 09:57" -->
- <rss version="2.0"
- xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
- xmlns:content="http://purl.org/rss/1.0/modules/content/"
- xmlns:wfw="http://wellformedweb.org/CommentAPI/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:wp="http://wordpress.org/export/1.2/"
- >
-
- <channel>
- <title>Moderna WordPress Version</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp</link>
- <description>This is the WordPress version of the Moderna Theme</description>
- <pubDate>Tue, 18 Oct 2016 09:57:38 +0000</pubDate>
- <language>en-US</language>
- <wp:wxr_version>1.2</wp:wxr_version>
- <wp:base_site_url>https://bootstrapmade.com/demo/themes/ModernaWp</wp:base_site_url>
- <wp:base_blog_url>https://bootstrapmade.com/demo/themes/ModernaWp</wp:base_blog_url>
-
- <wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[admin]]></wp:author_login><wp:author_email><![CDATA[contact@bootstrapmade.com]]></wp:author_email><wp:author_display_name><![CDATA[admin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
-
- <wp:category>
- <wp:term_id>2</wp:term_id>
- <wp:category_nicename><![CDATA[blog]]></wp:category_nicename>
- <wp:category_parent><![CDATA[]]></wp:category_parent>
- <wp:cat_name><![CDATA[Blog]]></wp:cat_name>
- </wp:category>
- <wp:category>
- <wp:term_id>1</wp:term_id>
- <wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
- <wp:category_parent><![CDATA[]]></wp:category_parent>
- <wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
- </wp:category>
- <wp:tag>
- <wp:term_id>3</wp:term_id>
- <wp:tag_slug><![CDATA[article]]></wp:tag_slug>
- <wp:tag_name><![CDATA[Article]]></wp:tag_name>
- </wp:tag>
- <wp:tag>
- <wp:term_id>4</wp:term_id>
- <wp:tag_slug><![CDATA[blog]]></wp:tag_slug>
- <wp:tag_name><![CDATA[Blog]]></wp:tag_name>
- </wp:tag>
- <wp:tag>
- <wp:term_id>5</wp:term_id>
- <wp:tag_slug><![CDATA[general]]></wp:tag_slug>
- <wp:tag_name><![CDATA[General]]></wp:tag_name>
- </wp:tag>
- <wp:tag>
- <wp:term_id>6</wp:term_id>
- <wp:tag_slug><![CDATA[post]]></wp:tag_slug>
- <wp:tag_name><![CDATA[Post]]></wp:tag_name>
- </wp:tag>
- <wp:term>
- <wp:term_id><![CDATA[7]]></wp:term_id>
- <wp:term_taxonomy><![CDATA[portfolio_categories]]></wp:term_taxonomy>
- <wp:term_slug><![CDATA[graphic-design]]></wp:term_slug>
- <wp:term_parent><![CDATA[]]></wp:term_parent>
- <wp:term_name><![CDATA[Graphic Design]]></wp:term_name>
- </wp:term>
- <wp:term>
- <wp:term_id><![CDATA[8]]></wp:term_id>
- <wp:term_taxonomy><![CDATA[portfolio_categories]]></wp:term_taxonomy>
- <wp:term_slug><![CDATA[icons]]></wp:term_slug>
- <wp:term_parent><![CDATA[]]></wp:term_parent>
- <wp:term_name><![CDATA[Icons]]></wp:term_name>
- </wp:term>
- <wp:term>
- <wp:term_id><![CDATA[9]]></wp:term_id>
- <wp:term_taxonomy><![CDATA[portfolio_categories]]></wp:term_taxonomy>
- <wp:term_slug><![CDATA[web-design]]></wp:term_slug>
- <wp:term_parent><![CDATA[]]></wp:term_parent>
- <wp:term_name><![CDATA[Web Design]]></wp:term_name>
- </wp:term>
- <wp:term><wp:term_id>10</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[top-menu]]></wp:term_slug><wp:term_name><![CDATA[Top menu]]></wp:term_name>
- </wp:term>
-
- <generator>https://wordpress.org/?v=4.6.1</generator>
-
- <item>
- <title>1</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/hello-world-2/attachment/1/</link>
- <pubDate>Thu, 12 Nov 2015 17:32:13 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/1.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>112</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:32:13]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:32:13]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[1]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>14</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/1.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/1.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2014/04/1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"1-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"1-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"1-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>2</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/hello-world-2/attachment/2/</link>
- <pubDate>Thu, 12 Nov 2015 17:32:15 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/2.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>113</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:32:15]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:32:15]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[2]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>14</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/2.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/2.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2014/04/2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"2-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"2-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"2-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Slide 3</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-3/</link>
- <pubDate>Sun, 13 Apr 2014 10:44:54 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=flexslider&p=7</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>7</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:44:54]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:44:54]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[slide-3]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[flexslider]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_title]]></wp:meta_key>
- <wp:meta_value><![CDATA[Clean & Fast]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_caption]]></wp:meta_key>
- <wp:meta_value><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit donec mer lacinia.]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btntext]]></wp:meta_key>
- <wp:meta_value><![CDATA[LEARN MORE]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btnurl]]></wp:meta_key>
- <wp:meta_value><![CDATA[http://bootstraptaste.com]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_img]]></wp:meta_key>
- <wp:meta_value><![CDATA[120]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Slide 2</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-2/</link>
- <pubDate>Sun, 13 Apr 2014 10:45:25 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=flexslider&p=10</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>10</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:45:25]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:45:25]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[slide-2]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[flexslider]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_title]]></wp:meta_key>
- <wp:meta_value><![CDATA[Fully Responsive]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_caption]]></wp:meta_key>
- <wp:meta_value><![CDATA[Sodales neque vitae justo sollicitudin aliquet sit amet diam curabitur sed fermentum.]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btntext]]></wp:meta_key>
- <wp:meta_value><![CDATA[LEARN MORE]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btnurl]]></wp:meta_key>
- <wp:meta_value><![CDATA[http://bootstraptaste.com]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_img]]></wp:meta_key>
- <wp:meta_value><![CDATA[118]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Slide 1</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-1/</link>
- <pubDate>Sun, 13 Apr 2014 10:45:52 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=flexslider&p=13</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>13</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:45:52]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:45:52]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[slide-1]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[flexslider]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_title]]></wp:meta_key>
- <wp:meta_value><![CDATA[Modern Design]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_caption]]></wp:meta_key>
- <wp:meta_value><![CDATA[Duis fermentum auctor ligula ac malesuada. Mauris et metus odio, in pulvinar urna]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btntext]]></wp:meta_key>
- <wp:meta_value><![CDATA[LEARN MORE]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_btnurl]]></wp:meta_key>
- <wp:meta_value><![CDATA[http://bootstraptaste.com]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_flexslider_img]]></wp:meta_key>
- <wp:meta_value><![CDATA[116]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/52/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>52</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[52]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>6</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[0]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[49]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Features</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/features/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/features/</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>53</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[features]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>2</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[custom]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[0]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[53]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[custom]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[#]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/57/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>57</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[57]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>4</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[53]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[56]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>3</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/hello-world-2/attachment/3/</link>
- <pubDate>Thu, 12 Nov 2015 17:32:17 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/3.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>114</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:32:17]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:32:17]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[3]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>14</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/3.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/3.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2014/04/3.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"3-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"3-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"3-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>1</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-1/1-2/</link>
- <pubDate>Thu, 12 Nov 2015 17:32:52 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/1.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>116</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:32:52]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:32:52]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[1-2]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>13</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/1.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2015/11/1.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2015/11/1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"1-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"1-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"1-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>2</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-2/2-2/</link>
- <pubDate>Thu, 12 Nov 2015 17:33:35 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/2.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>118</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:33:35]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:33:35]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[2-2]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>10</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/2.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2015/11/2.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2015/11/2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"2-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"2-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"2-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>3</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/flexslider/slide-3/3-2/</link>
- <pubDate>Thu, 12 Nov 2015 17:34:16 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/3.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>120</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:34:16]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:34:16]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[3-2]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>7</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2015/11/3.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2015/11/3.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:360;s:4:"file";s:13:"2015/11/3.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"3-300x105.jpg";s:5:"width";i:300;s:6:"height";i:105;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:14:"3-1024x360.jpg";s:5:"width";i:1024;s:6:"height";i:360;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"3-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>11</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-1/attachment/11/</link>
- <pubDate>Thu, 12 Nov 2015 17:42:10 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/11.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>122</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:42:10]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:42:10]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[11]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>42</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/11.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/11.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:14:"2014/04/11.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"11-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:14:"11-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:12:"11-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>4</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/4/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:17 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/4.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>124</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:17]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:17]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[4]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/4.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/4.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:13:"2014/04/4.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"4-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"4-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>5</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/5/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:19 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/5.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>125</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:19]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:19]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[5]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/5.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/5.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:13:"2014/04/5.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"5-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"5-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>6</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/6/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:20 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/6.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>126</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:20]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:20]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[6]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/6.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/6.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:13:"2014/04/6.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"6-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"6-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>7</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/7/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:22 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/7.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>127</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:22]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:22]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[7]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/7.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/7.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:13:"2014/04/7.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"7-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"7-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"7-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>8</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/8/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:23 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/8.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>128</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:23]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:23]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[8]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/8.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/8.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:13:"2014/04/8.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"8-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:13:"8-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:11:"8-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>21</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/21/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/21.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>129</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[21]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/21.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/21.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:14:"2014/04/21.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"21-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:14:"21-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:12:"21-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>31</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/attachment/31/</link>
- <pubDate>Thu, 12 Nov 2015 17:44:25 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/31.jpg</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>130</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:44:25]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:44:25]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[31]]></wp:post_name>
- <wp:status><![CDATA[inherit]]></wp:status>
- <wp:post_parent>39</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[attachment]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:attachment_url><![CDATA[https://bootstrapmade.com/demo/themes/ModernaWp/wp-content/uploads/2014/04/31.jpg]]></wp:attachment_url>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
- <wp:meta_value><![CDATA[2014/04/31.jpg]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:14:"2014/04/31.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"31-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:14:"31-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:11:"small-thumb";a:4:{s:4:"file";s:12:"31-54x54.jpg";s:5:"width";i:54;s:6:"height";i:54;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Sample Page</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/sample-page/</link>
- <pubDate>Thu, 12 Nov 2015 17:14:20 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/?page_id=2</guid>
- <description></description>
- <content:encoded><![CDATA[This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:
-
- <blockquote>Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)</blockquote>
-
- ...or something like this:
-
- <blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>
-
- As a new WordPress user, you should go to <a href="http://bootstraptaste.com/demo/themes/ModernaWp/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>2</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:14:20]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:14:20]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[sample-page]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[default]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Lorem ipsum dolor sit amet</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/hello-world-2/</link>
- <pubDate>Wed, 09 Apr 2014 04:46:32 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://localhost/wordpress-3.8.2/wordpress/?p=1</guid>
- <description></description>
- <content:encoded><![CDATA[Qui ut ceteros comprehensam. Cu eos sale sanctus eligendi, id ius elitr saperet, ocurreret pertinacia pri an. No mei nibh consectetuer, semper laoreet perfecto ad qui, est rebum nulla argumentum ei. Fierent adipisci iracundia est ei, usu timeam persius ea. Usu ea justo malis, pri quando everti electram ei, ex homero omittam salutatus sed.
-
- Lorem ipsum dolor sit amet, an eum wisi probo homero, at utinam adipisci interpretaris sit. Usu molestiae reprimique disputationi eu, civibus partiendo mea an, no quodsi salutandi signiferumque nam. Populo viderer detraxit vel an, an nec eirmod discere necessitatibus.
-
- Quo natum commodo dolorum et, eu case putant option mel. Volumus intellegebat has ex, per in case viris. Ex per duis cetero, et vidisse bonorum has. Vis maluisset appellantur no, et eos suas intellegam.]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>14</wp:post_id>
- <wp:post_date><![CDATA[2014-04-09 04:46:32]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-09 04:46:32]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[hello-world-2]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[post]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="post_tag" nicename="article"><![CDATA[Article]]></category>
- <category domain="category" nicename="blog"><![CDATA[Blog]]></category>
- <category domain="post_tag" nicename="blog"><![CDATA[Blog]]></category>
- <category domain="post_tag" nicename="post"><![CDATA[Post]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[112]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:comment>
- <wp:comment_id>2</wp:comment_id>
- <wp:comment_author><![CDATA[Mr WordPress]]></wp:comment_author>
- <wp:comment_author_email><![CDATA[]]></wp:comment_author_email>
- <wp:comment_author_url>http://wordpress.org/</wp:comment_author_url>
- <wp:comment_author_IP><![CDATA[]]></wp:comment_author_IP>
- <wp:comment_date><![CDATA[2014-04-13 07:43:08]]></wp:comment_date>
- <wp:comment_date_gmt><![CDATA[2014-04-13 07:43:08]]></wp:comment_date_gmt>
- <wp:comment_content><![CDATA[Hi, this is a comment.<br />To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.]]></wp:comment_content>
- <wp:comment_approved><![CDATA[1]]></wp:comment_approved>
- <wp:comment_type><![CDATA[]]></wp:comment_type>
- <wp:comment_parent>0</wp:comment_parent>
- <wp:comment_user_id>0</wp:comment_user_id>
- </wp:comment>
- </item>
- <item>
- <title>Home</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/</link>
- <pubDate>Sun, 13 Apr 2014 10:43:07 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=5</guid>
- <description></description>
- <content:encoded><![CDATA[[row]
- [column md="3"]
- [box title="Fully responsive" icon="fa-desktop" button="Learn more" url="#" content="Voluptatem accusantium doloremque laudantium sprea totam rem aperiam. "]
- [/column]
- [column md="3"]
-
- [box title="Modern Style" icon="fa-pagelines" button="Learn more" url="#" content="Voluptatem accusantium doloremque laudantium sprea totam rem aperiam. "]
- [/column]
-
- [column md="3"]
-
- [box title="Customizable" icon="fa-edit" button="Learn more" url="#" content="Voluptatem accusantium doloremque laudantium sprea totam rem aperiam. "]
- [/column]
-
- [column md="3"]
-
- [box title="Valid HTML5" icon="fa-code" button="Learn more" url="#" content="Voluptatem accusantium doloremque laudantium sprea totam rem aperiam. "]
- [/column]
- [/row]
-
-
-
- [row]
- [column md="12"]
- [dividerline type="solidline"]
- [/column]
- [/row]
-
- [row]
- [column md="12"]
- [latestworks title="Recent Works" count="4"]
- [/column]
- [/row]
-
- ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>5</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:43:07]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:43:07]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[home]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-home.php]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 8</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-8/</link>
- <pubDate>Sun, 13 Apr 2014 10:53:44 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=21</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>21</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:53:44]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:53:44]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-8]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="web-design"><![CDATA[Web Design]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[128]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 7</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-7/</link>
- <pubDate>Sun, 13 Apr 2014 10:54:13 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=24</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>24</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:54:13]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:54:13]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-7]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="icons"><![CDATA[Icons]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[127]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 6</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-6/</link>
- <pubDate>Sun, 13 Apr 2014 10:54:54 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=27</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>27</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:54:54]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:54:54]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-6]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="graphic-design"><![CDATA[Graphic Design]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[126]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 5</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-5/</link>
- <pubDate>Sun, 13 Apr 2014 10:55:17 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=30</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>30</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:55:17]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:55:17]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-5]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="icons"><![CDATA[Icons]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[125]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 4</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-4/</link>
- <pubDate>Sun, 13 Apr 2014 10:55:43 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=33</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>33</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:55:43]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:55:43]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-4]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="web-design"><![CDATA[Web Design]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[124]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 3</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-3/</link>
- <pubDate>Sun, 13 Apr 2014 10:56:07 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=36</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>36</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:56:07]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:56:07]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-3]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="graphic-design"><![CDATA[Graphic Design]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[130]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 2</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-2/</link>
- <pubDate>Sun, 13 Apr 2014 10:56:33 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=39</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>39</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:56:33]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:56:33]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-2]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="icons"><![CDATA[Icons]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[129]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio 1</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/portfolio-1/</link>
- <pubDate>Sun, 13 Apr 2014 10:56:55 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?post_type=portfolio&p=42</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>42</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:56:55]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:56:55]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio-1]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[portfolio]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="portfolio_categories" nicename="graphic-design"><![CDATA[Graphic Design]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[122]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[iweb_project_overview]]></wp:meta_key>
- <wp:meta_value><![CDATA[Vestibulum pulvinar adipiscing turpis vitae at ultrices. Suspendisse eu lectus dui, vitae lob in ortis lorem convallis semper felis. Fusce ravida nibh et ante accusan molestie.]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Portfolio</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/portfolio/</link>
- <pubDate>Sun, 13 Apr 2014 10:57:11 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=45</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>45</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:57:11]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:57:11]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[portfolio]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-portfolio.php]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Blog</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/blog/</link>
- <pubDate>Sun, 13 Apr 2014 10:58:11 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=49</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>49</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:58:11]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:58:11]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[blog]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-blog.php]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Contact</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/contact/</link>
- <pubDate>Sun, 13 Apr 2014 10:58:25 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=51</guid>
- <description></description>
- <content:encoded><![CDATA[]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>51</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 10:58:25]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 10:58:25]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[contact]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-contact.php]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Pricing box</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/pricing-box/</link>
- <pubDate>Sun, 13 Apr 2014 11:00:37 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=56</guid>
- <description></description>
- <content:encoded><![CDATA[<h4>Example on 3 Columns ( use col-md-4)</h4>
- [row]
- [column md="4"]
- [pricingtable type="normal"]
- [pricing-heading type="special" title="Very Basic" curr="$" price="15.00" period="Month"]
- [pricing-features]
- [pricing-list]100 applications[/pricing-list]
- [pricing-list]24x7 support available[/pricing-list]
- [pricing-list]No hidden fees[/pricing-list]
- [pricing-list]Free 30-days trial[/pricing-list]
-
- [pricing-list]Stop anytime easily[/pricing-list]
- [/pricing-features]
- [pricing-button text="REGISTER NOW" url="#"]
- [/pricingtable]
- [/column]
- [column md="4"]
- [pricingtable type="special"]
- [pricing-heading type="special" title="Good Choice" curr="$" price="25.00" period="Month"]
- [pricing-features]
- [pricing-list]100 applications[/pricing-list]
- [pricing-list]24x7 support available[/pricing-list]
- [pricing-list]No hidden fees[/pricing-list]
- [pricing-list]Free 30-days trial[/pricing-list][pricing-list]Stop anytime easily[/pricing-list]
- [/pricing-features]
- [pricing-button text="REGISTER NOW" url="#"]
- [/pricingtable]
- [/column]
-
- [column md="4"]
- [pricingtable type="normal"]
- [pricing-heading type="special" title="Just Happy" curr="$" price="35.00" period="Month"]
- [pricing-features]
- [pricing-list]100 applications[/pricing-list]
- [pricing-list]24x7 support available[/pricing-list]
- [pricing-list]No hidden fees[/pricing-list]
- [pricing-list]Free 30-days trial[/pricing-list][pricing-list]Stop anytime easily[/pricing-list]
- [/pricing-features]
- [pricing-button text="REGISTER NOW" url="#"]
- [/pricingtable]
- [/column]
- [/row]]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>56</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 11:00:37]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 11:00:37]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[pricing-box]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-fullwidth.php]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Components</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/components/</link>
- <pubDate>Sun, 13 Apr 2014 11:06:22 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?page_id=64</guid>
- <description></description>
- <content:encoded><![CDATA[<h4>This theme support Bootstrap 3.1.1 Features & Components</h4>
- [row]
- [column md="12"]
-
- http://www.youtube.com/watch?v=c3A9eVknqtA
-
- [/column]
- [/row]
-
-
- <h4>Some example</h4>
- [row]
- [column md="12"]
- [button type="success" size="lg" link="#"] Success button [/button] [button type="info" size="lg" link="#"] Info button [/button] [button type="primary" size="lg" link="#"] Primary button [/button] [button type="danger" size="lg" link="#"] Danger button [/button] [button type="warning" size="lg" link="#"] Warning button [/button]
-
- [/column]
- [/row]
-
- [row]
- [column md="4"]
- <h4>Button Group</h4>
- [button-group size="md" justified="" vertical=""]
- [button link="#"] Button 1 [/button]
- [button link="#"] Button 2[/button]
- [button link="#"] Button 3[/button]
- [/button-group]
-
- [/column]
-
- [column md="4"]
- <h4>Button Dropdown</h4>
- [button-group]
- [button link="#" dropdown="true" data="toggle,dropdown"] Button dropdown [caret][/button]
- [dropdown]
- [dropdown-header] Dorpdown header [/dropdown-header]
- [dropdown-item link="#"] button here[/dropdown-item]
- [dropdown-item link="#"] button here[/dropdown-item]
- [dropdown-item link="#"] button here[/dropdown-item]
- [/dropdown]
- [/button-group]
-
- [/column]
-
- [column md="4"]
- <h4>Label</h4>
- [label type="success"] label success [/label] [label type="info"] info [/label] [label type="warning"] warning [/label] [label type="danger"] danger [/label]
-
- [/column]
- [/row]
-
- [row]
- [column md="4"]
- <h4>Alerts</h4>
- [alert type="success"] success alert [/alert] [alert type="info"] info alert [/alert] [alert type="danger"] danger alert [/alert] [alert type="warning"] warning alert [/alert]
-
- [/column]
-
- [column md="4"]
- <h4>Progress</h4>
- [progress striped="true"]
- [progress-bar percent="50"]
- [progress-bar percent="25" type="success"]
- [/progress]
-
- [progress striped="true"]
- [progress-bar percent="30"]
- [progress-bar percent="45" type="warning"]
- [/progress]
-
- [progress striped="false"]
-
- [progress-bar percent="40" type="danger"]
-
- [/progress]
-
- [progress striped="false"]
-
- [progress-bar percent="65" type="info"]
-
- [/progress]
-
- [/column]
-
- [column md="4"]
- <h4>Modal</h4>
- [modal text="Click to launch modal" title="Modal Title Goes Here" xclass="btn btn-success btn-large"]
- Lorem ipsum dolor sit amet, an eum wisi probo homero, at utinam adipisci interpretaris sit. Usu molestiae reprimique disputationi eu
- [modal-footer]
- [button type="primary" link="#" data="dismiss,modal"]Dismiss[/button]
- [/modal-footer]
- [/modal]
-
- [/column]
- [/row]
-
- ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>64</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 11:06:22]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 11:06:22]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[components]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[page]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_wp_page_template]]></wp:meta_key>
- <wp:meta_value><![CDATA[templates/page-fullwidth.php]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_oembed_075f43cfa217b9b5f3ae2cebf4f488e3]]></wp:meta_key>
- <wp:meta_value><![CDATA[<iframe width="960" height="540" src="http://www.youtube.com/embed/c3A9eVknqtA?feature=oembed" frameborder="0" allowfullscreen></iframe>]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/65/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>65</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[65]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>3</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[53]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[64]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/109/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/109/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>109</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[109]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>1</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[0]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[5]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/110/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/110/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>110</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[110]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>5</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[0]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[45]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title></title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/111/</link>
- <pubDate>Thu, 12 Nov 2015 17:23:24 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/demo/themes/ModernaWp/111/</guid>
- <description></description>
- <content:encoded><![CDATA[ ]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>111</wp:post_id>
- <wp:post_date><![CDATA[2015-11-12 17:23:24]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2015-11-12 17:23:24]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[closed]]></wp:comment_status>
- <wp:ping_status><![CDATA[closed]]></wp:ping_status>
- <wp:post_name><![CDATA[111]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>7</wp:menu_order>
- <wp:post_type><![CDATA[nav_menu_item]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="nav_menu" nicename="top-menu"><![CDATA[Top menu]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_type]]></wp:meta_key>
- <wp:meta_value><![CDATA[post_type]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_menu_item_parent]]></wp:meta_key>
- <wp:meta_value><![CDATA[0]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[51]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_object]]></wp:meta_key>
- <wp:meta_value><![CDATA[page]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_target]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_classes]]></wp:meta_key>
- <wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_xfn]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_menu_item_url]]></wp:meta_key>
- <wp:meta_value><![CDATA[]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Volumus intellegebat has exper in</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/volumus-intellegebat-has-exper-in/</link>
- <pubDate>Sun, 13 Apr 2014 12:18:45 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?p=105</guid>
- <description></description>
- <content:encoded><![CDATA[Qui ut ceteros comprehensam. Cu eos sale sanctus eligendi, id ius elitr saperet, ocurreret pertinacia pri an. No mei nibh consectetuer, semper laoreet perfecto ad qui, est rebum nulla argumentum ei. Fierent adipisci iracundia est ei, usu timeam persius ea. Usu ea justo malis, pri quando everti electram ei, ex homero omittam salutatus sed.
-
- Lorem ipsum dolor sit amet, an eum wisi probo homero, at utinam adipisci interpretaris sit. Usu molestiae reprimique disputationi eu, civibus partiendo mea an, no quodsi salutandi signiferumque nam. Populo viderer detraxit vel an, an nec eirmod discere necessitatibus.
-
- Quo natum commodo dolorum et, eu case putant option mel. Volumus intellegebat has ex, per in case viris. Ex per duis cetero, et vidisse bonorum has. Vis maluisset appellantur no, et eos suas intellegam.]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>105</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 12:18:45]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 12:18:45]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[volumus-intellegebat-has-exper-in]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[post]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="post_tag" nicename="article"><![CDATA[Article]]></category>
- <category domain="category" nicename="blog"><![CDATA[Blog]]></category>
- <category domain="post_tag" nicename="general"><![CDATA[General]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[129]]></wp:meta_value>
- </wp:postmeta>
- </item>
- <item>
- <title>Cu eos sale sanctus eligendi</title>
- <link>https://bootstrapmade.com/demo/themes/ModernaWp/cu-eos-sale-sanctus-eligendi/</link>
- <pubDate>Sun, 13 Apr 2014 12:19:47 +0000</pubDate>
- <dc:creator><![CDATA[admin]]></dc:creator>
- <guid isPermaLink="false">http://bootstraptaste.com/wp/moderna/?p=108</guid>
- <description></description>
- <content:encoded><![CDATA[Qui ut ceteros comprehensam. Cu eos sale sanctus eligendi, id ius elitr saperet, ocurreret pertinacia pri an. No mei nibh consectetuer, semper laoreet perfecto ad qui, est rebum nulla argumentum ei. Fierent adipisci iracundia est ei, usu timeam persius ea. Usu ea justo malis, pri quando everti electram ei, ex homero omittam salutatus sed.
-
- Lorem ipsum dolor sit amet, an eum wisi probo homero, at utinam adipisci interpretaris sit. Usu molestiae reprimique disputationi eu, civibus partiendo mea an, no quodsi salutandi signiferumque nam. Populo viderer detraxit vel an, an nec eirmod discere necessitatibus.
-
- Quo natum commodo dolorum et, eu case putant option mel. Volumus intellegebat has ex, per in case viris. Ex per duis cetero, et vidisse bonorum has. Vis maluisset appellantur no, et eos suas intellegam.]]></content:encoded>
- <excerpt:encoded><![CDATA[]]></excerpt:encoded>
- <wp:post_id>108</wp:post_id>
- <wp:post_date><![CDATA[2014-04-13 12:19:47]]></wp:post_date>
- <wp:post_date_gmt><![CDATA[2014-04-13 12:19:47]]></wp:post_date_gmt>
- <wp:comment_status><![CDATA[open]]></wp:comment_status>
- <wp:ping_status><![CDATA[open]]></wp:ping_status>
- <wp:post_name><![CDATA[cu-eos-sale-sanctus-eligendi]]></wp:post_name>
- <wp:status><![CDATA[publish]]></wp:status>
- <wp:post_parent>0</wp:post_parent>
- <wp:menu_order>0</wp:menu_order>
- <wp:post_type><![CDATA[post]]></wp:post_type>
- <wp:post_password><![CDATA[]]></wp:post_password>
- <wp:is_sticky>0</wp:is_sticky>
- <category domain="category" nicename="blog"><![CDATA[Blog]]></category>
- <category domain="post_tag" nicename="blog"><![CDATA[Blog]]></category>
- <category domain="post_tag" nicename="general"><![CDATA[General]]></category>
- <category domain="post_tag" nicename="post"><![CDATA[Post]]></category>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_edit_last]]></wp:meta_key>
- <wp:meta_value><![CDATA[1]]></wp:meta_value>
- </wp:postmeta>
- <wp:postmeta>
- <wp:meta_key><![CDATA[_thumbnail_id]]></wp:meta_key>
- <wp:meta_value><![CDATA[125]]></wp:meta_value>
- </wp:postmeta>
- </item>
- </channel>
- </rss>
|