Beecoded
Am here boss oya drop d code
Weezy
Beecoded Remind me pls, code for wat?
Weezy
Beecoded Blogmr.com home.html code below
<br/><div id="content" class="content posts"><br /> {% if posts_by_search %}<br /><div class="alert alert-info"><br /><h3><br /> Search"{{ posts_by_search }}".<br /></h3><br /></div><br /> {% elseif posts_by_tag %}<br /><div class="alert alert-info"><br /><h3><br /> Tag"{{ posts_by_tag }}".<br /></h3><br /></div><br /> {% elseif posts_by_category %}<br /><div class="alert alert-info"><br /><h3><br /> Showing posts under category"{{ posts_by_category }}".<br /></h3><br /></div><br /> {% endif %}<br /><!-- // --><br /> {% if total_posts == 0 %}<br /><div class="alert alert-warning"><br /> Empty post.<br /></div><br /> {% else %}<br /><!-- // --><div class="alert alert-info"><br /><h3><center><b>Trending Updates</b></center></h3></div><div class="post"><li><br /> {% for post in posts %}<div class="post" id="post-{{ post.id }}"><div class="post-body"><br /> {{ site.settings.display_thumbnail == 'yes' ? post.thumbnail|raw : '' }}</div><a href="{{ site.url }}/{{ post.link }}.html">{{ post.title }}<br /></a></div></li><br /> {% endfor %}</div><br /><div class="pager"><br /> {{ pagination|raw }}<br /></div><br /><div class="clear"></div><br /> {% endif %}<br /></div>
Copy code
Weezy
Beecoded copy below and paste in post.html
<div class="group"><div id="content" class="content singlepost">
{% if post == null %}
<div class="alert alert-danger post-not-found">
Post not found.
</div>
{% else %}
<!-- Breadcrumb -->
{{ breadcrumb|raw }}
<!-- /Breadcrumb -->
<div class="post" id="post-{{ post.id }}">
<div class="post-heading">
<h2 class="post-title">
{{ post.title }}
</h2>
<span class="post-meta">
Posted by {{ site.author_name }} on {{ post.time|date('d M Y - H:i') }}
</span>
</div>
<div class="post-body">
{{ post.content|raw }}
</div>
{% if site.settings.display_social_buttons == 'yes' %}
<div class="social-buttons">
<span>
<a href="https://www.facebook.com/sharer/sharer.php?u={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}&t={{ post.title|url_encode }}" target="_blank" title="Share on Facebook"><img src="/images/social_icons/Facebook.png"/></a>
</span>
<span>
<a href="https://twitter.com/tweet?source={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}&text={{ post.title|url_encode }}" target="_blank" title="Tweet"><img src="/images/social_icons/Twitter.png"/></a>
</span>
<span>
<a href="https://plus.google.com/share?url={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}" target="_blank" title="Share on Google "><img src="/images/social_icons/Google .png"/></a>
</span>
<span>
<a href="http://pinterest.com/pin/create/button/?url={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}&description={{ post.title|url_encode }}" target="_blank" title="Pin it"><img src="/images/social_icons/Pinterest.png"/></a>
</span>
<span>
<a href="http://www.reddit.com/submit?url={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}&title={{ post.title|url_encode }}" target="_blank" title="Submit to Reddit"><img src="/images/social_icons/Reddit.png"/></span>
<span>
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}&title={{ post.title|url_encode }}&summary=&source={{ (site.url ~ '/' ~ post.link ~'.html')|url_encode }}" target="_blank" title="Share on LinkedIn"><img src="/images/social_icons/LinkedIn.png"/></a>
</span>
</div>
{% endif %}
<!-- // -->
{% if site.author_id == user.id %}
<div class="admin-post-action">
<a href="{{ powered.url }}/account /switch_blog/{{ site.id }}?redirect_uri={{ (powered.url~'/posts/edit/'~post.id)|url_encode }}">Edit</a>
{% if post.status == 'draft' %}
<a href="{{ powered.url }}/account /switch_blog/{{ site.id }}?redirect_uri={{ (powered.url~'/posts/publish_post/'~post.id)|url_encode }}">Publish</a>
{% endif %}
<a href="{{ powered.url }}/account /switch_blog/{{ site.id }}?redirect_uri={{ (powered.url~'/posts/delete/'~post.id)|url_encode }}">Delete</a>
</div>
{% endif %}
</div>
{% if site.settings.posts_list_in_singlepost != 'none' and recent_posts != null %}
<div class="recent-posts">
<h3>
{{ site.settings.posts_list_in_singlepost == 'recent_posts' ? 'Recent Posts' : 'Related Posts' }}
</h3>
<ul>
{% for r_post in recent_posts %}
<li>
<a href="{{ site.url }}/{{ r_post.link }}.html">{{ r_post.title }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
<!-- Comments -->
{% if allow_comments %}
<div class="comment-info">
<h3>
Comments
</h3>
<h4>
{{ posts.total_comments }} Responds for "{{ post.title }}"
</h4>
</div>
<div class="comments" id="comments">
{% if total_comments == 0 %}
<div class="alert alert-danger">
Empty comment.
</div>
{% else %}
<!-- // -->
{% for comment in comments %}
<div class="comment {{ comment.status == 'moderated' ? 'moderated' : ''}}" id="comment-{{ comment.id }}">
<div class="pull-left">
<img src="{{ powered.url }}/files/users /avatar/{{ comment.author_id }}-48.png" alt="" class="comment-object"/>
</div>
<div class="comment-body">
<a class="comment-heading" href="{{ comment.author_homepage }}">
<strong>{{ comment.author_name }}</strong>
</a>
<div class="comment-meta">
<span>
{{ comment.time|date('d M Y - H:i') }}
</span>
</div>
<p> {{ comment.text|raw }}
</p>
{% if user.id == site.author_id %}
<div class="admin-comment-action">
{% if comment.status == 'moderated' %}
<a href="{{ powered.url ~ '/account /switch_blog/' ~ site.id ~ '?redirect_uri=' ~ (powered.url~'/comments/publish_comment/' ~ comment.id~'?redirect_uri='~(site.url~'/'~post.link~'.html#comment-'~comment.id)|url_encode|url_encode)|url_encode }}">Publish</a>
<a href="{{ powered.url ~ '/account /switch_blog/' ~ site.id ~ '?redirect_uri=' ~ (powered.url~'/comments/mark_as_spam/' ~ comment.id~'?redirect_uri='~(site.url~'/'~post.link~'.html#comments')|url_encode|url_encode)|url_encode }}">Spam</a>
{% elseif comment.status == 'published' %}
<a href="{{ powered.url ~ '/account /switch_blog/' ~ site.id ~ '?redirect_uri=' ~ (powered.url~'/comments/mark_as_spam/' ~ comment.id~'?redirect_uri='~(site.url~'/'~post.link~'.html#comments')|url_encode|url_encode)|url_encode }}">Spam</a>
{% endif %}
<a href="{{ powered.url ~ '/account /switch_blog/' ~ site.id ~ '?redirect_uri=' ~ (powered.url~'/comments/delete_comment/' ~ comment.id~'?redirect_uri='~(site.url~'/'~post.link~'.html#comments')|url_encode|url_encode)|url_encode }}">Delete</a>
</div>
{% endif %}
</div>
</div>
{% endfor %}
<!-- // -->
{% endif %}
</div>
{% if allow_new_comment %}
<div class="comment-form" id="new- comment">
<h3>
New Comment
</h3>
{% if new_comment_published != false %}
<div class="alert alert-success">
Comment successfully added and has been published.
</div>
{% elseif new_comment_moderated != false %}
<div class="alert alert-warning">
Comment successfully added and will be published after administrator approval.
</div>
{% elseif new_comment_errors != false %}
<div class="alert alert-danger">
<strong>
Error!
</strong>
<ol class="list-unstyled">
{% for err_k,err_v in new_comment_errors %}
<li>
{{ err_v }}
</li>
{% endfor %}
</ol>
</div>
{% endif %}
<!-- FORM -->
{{ form_comment_open|raw }}
<div class="form-group">
<label for="author">
Name
</label>
<input class="form-control" type="text" name="author" value="{{ form_comment_value.author }}" id="author" required="required" {{ form_comment_value.author ? 'readonly' : '' }}/>
</div>
<div class="form-group">
<label for="email">
Email
</label>
<input class="form-control" type="email" name="email" value="{{ form_comment_value.email }}" id="email" {{ (site.settings.comment_require_email=='yes' ? 'required="required"' : '') ~ (form_comment_value.email ? ' readonly' : '') }}/>
</div>
<div class="form-group">
<label for="homepage">
Homepage
</label>
<input class="form-control" type="url" name="homepage" value="{{ form_comment_value.homepage }}" id="homepage" />
</div>
<div class="form-group">
<label for="comment_text">
Comment
</label>
<textarea class="form-control" name="comment_text" id="comment_text" rows="8" required="required">{{ form_comment_value.comment_text }}</textarea>
<div class="help-block">You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strong></div>
</div>
{% if form_comment_captcha == true %}
<div class="form-group captcha">
<label for="captcha">
Captcha
</label>
<img class="captcha" src="{{ site.url }}/captcha.png" style="width: 128; height: 48; border: 0;" alt="Please refresh..."/>
<input class="form-control" type="text" name="captcha" id="captcha" maxlength="5" required="requred"/>
</div>
{% endif %}
<p>
<button class="btn" type="submit">
Send Comment
</button>
</p>
{% if is_user and (site.author_id != user.id) %} {% if subscribe_comment == false %}
<div class="checkbox">
<label>
<input type="checkbox" name="subscribe" value="1" checked="checked"/>
<span>
Subscribe updates comment
</span>
</label>
</div>
{% else %}
<div class="checkbox">
<label>
<input type="checkbox" name="subscribe" value="2"/>
<span>
Unsubscribe updates comment
</span>
</label>
</div>
{% endif %} {% endif %} {{ form_comment_close|raw }}
<!-- / FORM -->
</div>
{% else %}
<!-- // -->
{% if site.settings.comment_user == 'users' %}
<div class="alert alert-warning new-comment-closed">
New comments are only allowed for registered users.
</div>
{% elseif site.settings.comment_user == 'friends' %}
<div class="alert alert-warning new-comment-closed">
New comments are only allowed for friends.
</div>
{% elseif site.settings.comment_user == 'followers' %}
<div class="alert alert-warning new-comment-closed">
New comments are only allowed for followers.
</div>
{% elseif site.settings.close_comment_older_posts == 'yes' %}
<div class="alert alert-warning new-comment-closed">
New comments are closed because the post has been more than 14 days.
</div>
{% endif %}
<!-- // -->
{% endif %}
<!-- // -->
{% endif %}
<!-- /Comments -->
{% endif %}
</div></div>
Copy code
Beecoded
Weezy Thanks boss pls next
HAPPY BIRTHDAY TO UWEEZY
Weezy
Beecoded Headtags and css of worldwap.blogmr.com
<meta name="Generator" content="Ayodele" /><meta name="description" content="worldwap| home of unlimited services site" /><meta name="keywords" content="" /><style type="text/css">@import url(http://worldwap.blogmr.com/style-3189.css);</style><link rel="stylesheet" href="http://naijaloaded-14fckyzftwhxrd5ctbau.stackpathdns.com/wp-content/themes/carrington-mobile-1.2/style.css" type="text/css" media="screen" charset="utf-8"/>
<link rel="stylesheet" href="http://www.naijakit.com.ng/wp-content/plugins/mobilepress/themes/default/style.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css">
@import url(http://www.naijakit.com.ng/wp-content/plugins/mobilepress/themes/default/css/naijakit.css);
</style>
<link rel="stylesheet" href="http://www.baze9.com/wp-content/themes/NaijagroveV2/style.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css">
@import url(http://www.baze9.com/wp-content/themes/NaijagroveV2/css/spicy-naija.css);
</style>
<style type="text/css">@import url(http://naijaloaded-14fckyzftwhxrd5ctbau.stackpathdns.com/wp-content/themes/carrington-mobile-1.2/css/advanced.css);</style>
<meta name="target" content="Best Mobile Downloads Community"/>
<meta name="author" content="ayodele segun"/>
<meta name="description" content="Worldwap| home of unlimited services site like Music, Videos, Apps, Games and more"/>
<meta name="keywords" content="blogmr.com, chats, forums, mobile community, free facebook uploader, love calculator, friends meets, simple community, mobile downloads community, best mobile downloads community, online chat, Nigerian forum, operamini, Naija site, Chatting Community, Free Browsing, MTN, Opera, Indian web, entertainment, sports, politics, universities, jamb, admission, programming, website designing, articles, all the latest news, internet tunneling, health matters, online biz, hot jobs, find jobs, technology, hackers arena and so much more" />
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW"/>
<META NAME="GOOGLEBOT" CONTENT="INDEX, FOLLOW"/>
<META NAME="RATING" CONTENT="General"/>
<META HTTP-EQUIV="Content-Language" CONTENT="EN"/>
Copy code
Header code of worldwap.blogmr.com
<div align="left"></div><div><div class="group" id="mobile" style="padding:2px;border:1px solid white;"> <img src="http://weezywap.xtgem.com/i/i3/fb.png"/> <b> Stay update with us on Facebook</b><table width="100%"> <tr><td width="35%"> <a href="https://free.facebook.com/Worldwap-Home-Of-Unlimited-Services-718179948332449/"><div style="border:1px solid white;padding:3px;"> Like Page</div></a></td><td width="30%"></td> <td widths="35%"><a href="https://mobile.facebook.com/groups/631511337008056/"> <div style="border:1px solid white;padding:3px;"> Join Group</div></a></td></tr></table></div><br/></div>
<h1 id="site-name"><a href="http://www.worldwap.blogmr.com"><img src="http://worldwap.blogmr.com/files/worldwap-2.png"</a></h1> <div class="cat" align="center"><b> <a href="/">Home</a> | <a href="/category/music/1.html">Music</a> | <a href="/category/video/1.html">Video</a> | <a href="/category/entertainment/1.html">Entertainment</a> | <a href="/category/mixtape/1.html/">Mixtape</a> | <a href="/category/education/1.html/">Education</a> | <a href="/category/sports/1.html/">Sports</a> | <a href="/category/news/1.html">News</a> | <a href="/category/tech/1.html">Tech / Wapmasters</a> | <a href="/category/others/1.html">Others</a></b> </div>
Copy code
<div class="nk2"><div align="center"><div class=nk-main-nav-wrap">
<select name="options" onchange="location.href=this.options [this.selectedIndex].value" id="nav-drop-list">
<option value="/index.php">WorldWap Category </option>
<option value="/category/story-updates/1.html"> Story Updates</option><option value="/category/health-tips/1.html"> Health Tips</option>
<option value="/category/jokes/1.html"> Jokes</option>
<option value="/category/lyrics/1.html"> Lyrics</option>
<option value="/category/relationship/1.html"> Relationship | Marriage</option>
<option value="/category/instrumental/1.html"> Instrumental </option>
<option value="/category/entertainment/1.html"> Entertainment</option>
<option value="pages/about-us.html"> About Us</option>
<option value="pages/advertise-with-us.html"> Advertise With Us</option>
<option value="pages/contact-us.html"> Contact Us</option>
<option value="pages/promote-your-music-video-here.html"> Promote Music & Video</option>
</select></div></div>
Copy code
<br> <div class="group"><div align="center"><a href="http://Fb.com/DJS-wax-110366391919"/><img src="http://afripuze.blogmr.com/files/facebook-afripuze.png" width="49" height="49" border="0"/></a> <a href="http://Twitter.com/worldwap_united"/><img src="http://afripuze.blogmr.com/files/twitter-afripuze.png" border="0"/></a> <a href="http://Instagram.com/iamsunnywax" target="_blank"><img src="http://afripuze.blogmr.com/files/instagram-afripuze.png"/></a></center><center> </div></div>
<div class="br" align="center"><b>Rate Us Now <span class="likebtn-wrapper" data-identifier="item_1"></span>
<script> (function(d,e,s)
{if(d.getElementById("likebtn_wjs"))return;a=d.createElement(e);m=d.getElementsByTagName(e)[0];a.async=1;a.id="likebtn_wjs";a.src=s;m.parentNode.insertBefore(a,m)})(document,"script","//crackerzvilla.mobie.in/9jasense/widget.js");</script></b></div>
<div class="disclosure table group"><div align="center"><a href="http://worldwap.blogmr.com/do-you-speak-yoruba-culture-1-worldwap.html"><font color="red"><b>Worldwap Yoruba Forum: </b></font>Are You A Real Yoruba Man ,Enter our Yoruba Forum And Have A Nice Chat</div></div><br>
<div align='center'><a href='http://adloft.net/reg/ref/9959'><img src="http://worldwap.blogmr.com/files/advertise-your-business-here.gif"/></a></div>
<div class="disclosure table group"><div align="center"><a href="http://worldwap.blogmr.com/blogmrcom-forumhelp-center-and-coding-zone.html"><font color="red"><b>Get Help!!!: </b></font>Enter our blogmr.com forum and get any help you need</div></div><br>
<div align="center"><br/>
<p><a href="http://Facebook.com/home-of-unlimited-services-site"><img src="http://4.bp.blogspot.com/-pcwP7BgEzR8/UvqY5Jia71I/AAAAAAAADNI/ICJVKDOXOBw/s1600/facebook.png" width="32" height="32" /></a> <a href="http://twitter.com/codearenain"><img src="http://2.bp.blogspot.com/-f-tiBr1m6EQ/UvqZCFuzmLI/AAAAAAAADNQ/YpIrgbNBUyw/s1600/twitter.png" width="32" height="32" /></a> <a href="http://instagram.com/iamboyfizzy"><img src="http://3.bp.blogspot.com/-nlqAYz2XeuU/UvqZesb_A-I/AAAAAAAADNY/WGY48vixDwE/s1600/instagram-icon.png" width="32" height="32" /></a> <a href="http://saybook.wap-ka.com/site_whatsapp.xhtml"><img src="https://lh6.ggpht.com/mp86vbELnqLi2FzvhiKdPX31_oiTRLNyeK8x4IIrbF5eD1D5RdnVwjQP0hwMNR_JdA=w300" width="32" height="32" /></a></p></div>
<div><br/><p><div align="center"><b>Worldwap Site Partners</b><div class="post"><div class="post-meta"> <div class="post" class="post-meta"><table width="100%" border="0"> <tbody><tr> <td align="left"><a href=" http://facebook.com/codearena.heck.in"/><img src='http://icons.iconarchive.com/icons/mysitemyway/blue-jeans-social-media/32/facebook-square-icon.png'/></a></td><td align="center"> <div class="post"> <select name="url" size="0" onChange="window.open(this.options[this.selectedIndex].value,'_top')"><br/><option value="">Partner Sites:-</option><option value="http://giverland.blogmr.net">Giverland</option><option value="http://candid9ja.blogmr.com">Candid9ja</option><option value="http://faxtech.blogspot.com">Faxtech</option><option value="http://classiqtechs.blogmr.com">Classiqtechs</option><option value="http://Flowcheat.tk">Flowcheat</option><option value="http://twitter.com">Twitter</option><option value="http://exclusiveloaded.com">Exclusiveloaded</option><option value="http://9jabaze.com">9jabaze</option><option value="http://topcrib.cf">Topcrib</option></select> </div> <div align="center" style="padding: 8px; border: 1px solid #404040; border-radius: 4px; margin-bottom: 10px;"><font color="red"><b>Date and Time: </b></font><font color="green"> <div class="font" align="center"><font color="red"><b><img src="http://wapkaimage.com/1691/1691087_a31d6aa97e.png"/><script language="JavaScript" src="http://weezywap.xtgem.com/Javascript/Date/d4.js"></script> <script language="JavaScript" src="http://weezywap.xtgem.com/Javascript/Time/time.js"></script></b></font></div> </font></div>
</td><td align="right"><a href="http://twitter.com/codearenain" target="_blank"><img src='http://icons.iconarchive.com/icons/mysitemyway/blue-jeans-social-media/32/twitter-square-icon.png'/></a></td></tr></tbody></table></div> </div></div></div></p></div>
Copy code
Footer code of worldwap.blogmr.com
<div align="center"><p><div class="group"><div align="center">What is Happening in Your Area? Let Us know</div> <div class="group"><div align="center"> Call & Whatsapp Us at <strong>07017819768|08133994412,<strong><br/> Email </strong>;- <a href="mailto:AYODE">Flexyloaded@gmail.com</a> <strong> </strong></strong></div></div> </p></div><br>
<div align="center"><div class="group"><a href="https://feedburner.google.com/fb/a/mailverify?uri=worldwapfeed">Click And Subscribe For Our Latest Posts <a/>
<br>
<br><iframe src="http://www.appsgeyser.com/social_widget/social_widget.php?width=300&height=160&apkName=WorldWap Menu_4109800&simpleVersion=no" width="310" height="180" vspace="0" hspace="0" frameborder="no" scrolling="no" seamless="" allowtransparency="true"> </iframe>
</div>
</div>
Copy code
<div><div class="btn" id="mobile"><form action="http://google.com/m/search"><input type="text" name="q" style="border: 1px solid green; font-weight:bold;border-radius:3px;" maxlength="2048" placeholder="search Anything"/>
<input type="hidden" name="as_sitesearch" value="http://worldwap.blogmr.com"/>
<input type="submit" value="Search"/></form></div></div>
</br>
<br><div><p align="left"><h2 id="pages" class="table-title"><p align="left">Pages</h2>
<ul class="disclosure table group"> <li class="page_item page-
item-165"><p align="left"><a href="/pages/about-us.html">About Us</a></li> <li class="page_item page-item-86"><p align="left"><a href="/pages/advertise-with-us.html">
Advertise With Us</a></li><li
class="page_item page-item-163"><p align="left"><a href="/pages/contact-us.html">Contact Us</a></
li> <li class="page_item page-item-167"><p align="left"><a
href="/pages/ww-staff.html">Meet All Worldwap Admin </a></li><li class="page_item page-item-86"><p align="left"><a href="/pages/promote-your-music-video-here.html/">
Promotes Your Music/Video On Worldwap</a> </li> </ul> <hr/>
<div style="text-align: center;">
<p>Copyright © 2016 Ayodele Segun Flex</p>
<p><a href="http://m.facebook.com/ayodele.segun.7509"><img src="http://4.bp.blogspot.com/-pcwP7BgEzR8/UvqY5Jia71I/AAAAAAAADNI/ICJVKDOXOBw/s1600/facebook.png" width="32" height="32" border="0"></a> <a href="http://twitter.com/Worlwap_united"><img src="http://2.bp.blogspot.com/-f-tiBr1m6EQ/UvqZCFuzmLI/AAAAAAAADNQ/YpIrgbNBUyw/s1600/twitter.png" border="0"></a> <a href="http://instagram.com/naijaloadedcom" target="_blank"><img src="http://3.bp.blogspot.com/-nlqAYz2XeuU/UvqZesb_A-I/AAAAAAAADNY/WGY48vixDwE/s1600/instagram-icon.png" border="0"></a> <a href="http://www.naijaloaded.com.ng/2014/09/04/bbm-join-naijaloaded-bbm-channel-today-exclusive-music-updates/" target="_blank"><img src="http://1.bp.blogspot.com/-MQjrowgtvII/VChV1eTNHBI/AAAAAAAADe8/dj-pP9frenU/s1600/bbm32.png" border="0"></a>
</center></p>
<p align="center"><a href="/pages/about-us.html/"><strong>About Us</strong></a> | <a href=http:"/page/advertise-with-us
html"><strong>Advertise</strong></a> | <a href="http://worldwap.blogmr.com/login.html/"><strong>Login</strong></a> | <a href="http://worldwap.blogmr.com/follow.html/"><strong>Follow Us</strong></a> | <a href="/pages/ww-staff.html/"><strong>Ww Staff</strong></a> | <a href="/pages/privacy-policy.html/"><strong>Privacy Policy</strong></a><br>
<br><script type="text/javascript" src="http://xslt.alexa.com/site_stats/js/s/a?url=worldwap.blogmr.com"></script>
<br><a href="http://www.quick-counter.net/" title="HTML hit counter - Quick-counter.net"><img src="http://www.quick-counter.net/aip.php?tp=bt&tz=America%2FArgentina%2FBuenos_Aires" alt="HTML hit counter - Quick-counter.net" border="0" /></a>
Copy code
Beecoded
Weezy Thanks boss but pls help me add d header i mean both codes together and also do d footer cuz i cant adding code like dat of xtgem pls
Weezy
Beecoded Headtags and css of worldwap.blogmr.com
<meta name="Generator" content="Ayodele" /><meta name="description" content="worldwap| home of unlimited services site" /><meta name="keywords" content="" /><style type="text/css">@import url(http://worldwap.blogmr.com/style-3189.css);</style><link rel="stylesheet" href="http://naijaloaded-14fckyzftwhxrd5ctbau.stackpathdns.com/wp-content/themes/carrington-mobile-1.2/style.css" type="text/css" media="screen" charset="utf-8"/>
<link rel="stylesheet" href="http://www.naijakit.com.ng/wp-content/plugins/mobilepress/themes/default/style.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css">
@import url(http://www.naijakit.com.ng/wp-content/plugins/mobilepress/themes/default/css/naijakit.css);
</style>
<link rel="stylesheet" href="http://www.baze9.com/wp-content/themes/NaijagroveV2/style.css" type="text/css" media="screen" charset="utf-8" />
<style type="text/css">
@import url(http://www.baze9.com/wp-content/themes/NaijagroveV2/css/spicy-naija.css);
</style>
<style type="text/css">@import url(http://naijaloaded-14fckyzftwhxrd5ctbau.stackpathdns.com/wp-content/themes/carrington-mobile-1.2/css/advanced.css);</style>
<meta name="target" content="Best Mobile Downloads Community"/>
<meta name="author" content="ayodele segun"/>
<meta name="description" content="Worldwap| home of unlimited services site like Music, Videos, Apps, Games and more"/>
<meta name="keywords" content="blogmr.com, chats, forums, mobile community, free facebook uploader, love calculator, friends meets, simple community, mobile downloads community, best mobile downloads community, online chat, Nigerian forum, operamini, Naija site, Chatting Community, Free Browsing, MTN, Opera, Indian web, entertainment, sports, politics, universities, jamb, admission, programming, website designing, articles, all the latest news, internet tunneling, health matters, online biz, hot jobs, find jobs, technology, hackers arena and so much more" />
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW"/>
<META NAME="GOOGLEBOT" CONTENT="INDEX, FOLLOW"/>
<META NAME="RATING" CONTENT="General"/>
<META HTTP-EQUIV="Content-Language" CONTENT="EN"/>
Copy code
Header code of worldwap.blogmr.com
<div align="left"></div><div><div class="group" id="mobile" style="padding:2px;border:1px solid white;"> <img src="http://weezywap.xtgem.com/i/i3/fb.png"/> <b> Stay update with us on Facebook</b><table width="100%"> <tr><td width="35%"> <a href="https://free.facebook.com/Worldwap-Home-Of-Unlimited-Services-718179948332449/"><div style="border:1px solid white;padding:3px;"> Like Page</div></a></td><td width="30%"></td> <td widths="35%"><a href="https://mobile.facebook.com/groups/631511337008056/"> <div style="border:1px solid white;padding:3px;"> Join Group</div></a></td></tr></table></div><br/></div>
<h1 id="site-name"><a href="http://www.worldwap.blogmr.com"><img src="http://worldwap.blogmr.com/files/worldwap-2.png"</a></h1> <div class="cat" align="center"><b> <a href="/">Home</a> | <a href="/category/music/1.html">Music</a> | <a href="/category/video/1.html">Video</a> | <a href="/category/entertainment/1.html">Entertainment</a> | <a href="/category/mixtape/1.html/">Mixtape</a> | <a href="/category/education/1.html/">Education</a> | <a href="/category/sports/1.html/">Sports</a> | <a href="/category/news/1.html">News</a> | <a href="/category/tech/1.html">Tech / Wapmasters</a> | <a href="/category/others/1.html">Others</a></b> </div>
<div class="nk2"><div align="center"><div class=nk-main-nav-wrap">
<select name="options" onchange="location.href=this.options [this.selectedIndex].value" id="nav-drop-list">
<option value="/index.php">WorldWap Category </option>
<option value="/category/story-updates/1.html"> Story Updates</option><option value="/category/health-tips/1.html"> Health Tips</option>
<option value="/category/jokes/1.html"> Jokes</option>
<option value="/category/lyrics/1.html"> Lyrics</option>
<option value="/category/relationship/1.html"> Relationship | Marriage</option>
<option value="/category/instrumental/1.html"> Instrumental </option>
<option value="/category/entertainment/1.html"> Entertainment</option>
<option value="pages/about-us.html"> About Us</option>
<option value="pages/advertise-with-us.html"> Advertise With Us</option>
<option value="pages/contact-us.html"> Contact Us</option>
<option value="pages/promote-your-music-video-here.html"> Promote Music & Video</option>
</select></div></div>
<br> <div class="group"><div align="center"><a href="http://Fb.com/DJS-wax-110366391919"/><img src="http://afripuze.blogmr.com/files/facebook-afripuze.png" width="49" height="49" border="0"/></a> <a href="http://Twitter.com/worldwap_united"/><img src="http://afripuze.blogmr.com/files/twitter-afripuze.png" border="0"/></a> <a href="http://Instagram.com/iamsunnywax" target="_blank"><img src="http://afripuze.blogmr.com/files/instagram-afripuze.png"/></a></center><center> </div></div>
<div class="br" align="center"><b>Rate Us Now <span class="likebtn-wrapper" data-identifier="item_1"></span>
<script> (function(d,e,s)
{if(d.getElementById("likebtn_wjs"))return;a=d.createElement(e);m=d.getElementsByTagName(e)[0];a.async=1;a.id="likebtn_wjs";a.src=s;m.parentNode.insertBefore(a,m)})(document,"script","//crackerzvilla.mobie.in/9jasense/widget.js");</script></b></div>
<div class="disclosure table group"><div align="center"><a href="http://worldwap.blogmr.com/do-you-speak-yoruba-culture-1-worldwap.html"><font color="red"><b>Worldwap Yoruba Forum: </b></font>Are You A Real Yoruba Man ,Enter our Yoruba Forum And Have A Nice Chat</div></div><br>
<div align='center'><a href='http://adloft.net/reg/ref/9959'><img src="http://worldwap.blogmr.com/files/advertise-your-business-here.gif"/></a></div>
<div class="disclosure table group"><div align="center"><a href="http://worldwap.blogmr.com/blogmrcom-forumhelp-center-and-coding-zone.html"><font color="red"><b>Get Help!!!: </b></font>Enter our blogmr.com forum and get any help you need</div></div><br>
<div align="center"><br/>
<p><a href="http://Facebook.com/home-of-unlimited-services-site"><img src="http://4.bp.blogspot.com/-pcwP7BgEzR8/UvqY5Jia71I/AAAAAAAADNI/ICJVKDOXOBw/s1600/facebook.png" width="32" height="32" /></a> <a href="http://twitter.com/codearenain"><img src="http://2.bp.blogspot.com/-f-tiBr1m6EQ/UvqZCFuzmLI/AAAAAAAADNQ/YpIrgbNBUyw/s1600/twitter.png" width="32" height="32" /></a> <a href="http://instagram.com/iamboyfizzy"><img src="http://3.bp.blogspot.com/-nlqAYz2XeuU/UvqZesb_A-I/AAAAAAAADNY/WGY48vixDwE/s1600/instagram-icon.png" width="32" height="32" /></a> <a href="http://saybook.wap-ka.com/site_whatsapp.xhtml"><img src="https://lh6.ggpht.com/mp86vbELnqLi2FzvhiKdPX31_oiTRLNyeK8x4IIrbF5eD1D5RdnVwjQP0hwMNR_JdA=w300" width="32" height="32" /></a></p></div>
<div><br/><p><div align="center"><b>Worldwap Site Partners</b><div class="post"><div class="post-meta"> <div class="post" class="post-meta"><table width="100%" border="0"> <tbody><tr> <td align="left"><a href=" http://facebook.com/codearena.heck.in"/><img src='http://icons.iconarchive.com/icons/mysitemyway/blue-jeans-social-media/32/facebook-square-icon.png'/></a></td><td align="center"> <div class="post"> <select name="url" size="0" onChange="window.open(this.options[this.selectedIndex].value,'_top')"><br/><option value="">Partner Sites:-</option><option value="http://giverland.blogmr.net">Giverland</option><option value="http://candid9ja.blogmr.com">Candid9ja</option><option value="http://faxtech.blogspot.com">Faxtech</option><option value="http://classiqtechs.blogmr.com">Classiqtechs</option><option value="http://Flowcheat.tk">Flowcheat</option><option value="http://twitter.com">Twitter</option><option value="http://exclusiveloaded.com">Exclusiveloaded</option><option value="http://9jabaze.com">9jabaze</option><option value="http://topcrib.cf">Topcrib</option></select> </div> <div align="center" style="padding: 8px; border: 1px solid #404040; border-radius: 4px; margin-bottom: 10px;"><font color="red"><b>Date and Time: </b></font><font color="green"> <div class="font" align="center"><font color="red"><b><img src="http://wapkaimage.com/1691/1691087_a31d6aa97e.png"/><script language="JavaScript" src="http://weezywap.xtgem.com/Javascript/Date/d4.js"></script> <script language="JavaScript" src="http://weezywap.xtgem.com/Javascript/Time/time.js"></script></b></font></div> </font></div>
</td><td align="right"><a href="http://twitter.com/codearenain" target="_blank"><img src='http://icons.iconarchive.com/icons/mysitemyway/blue-jeans-social-media/32/twitter-square-icon.png'/></a></td></tr></tbody></table></div> </div></div></div></p></div>
Copy code
Footer code of worldwap.blogmr.com
<div align="center"><p><div class="group"><div align="center">What is Happening in Your Area? Let Us know</div> <div class="group"><div align="center"> Call & Whatsapp Us at <strong>07017819768|08133994412,<strong><br/> Email </strong>;- <a href="mailto:AYODE">Flexyloaded@gmail.com</a> <strong> </strong></strong></div></div> </p></div><br>
<div align="center"><div class="group"><a href="https://feedburner.google.com/fb/a/mailverify?uri=worldwapfeed">Click And Subscribe For Our Latest Posts <a/>
<br>
<br><iframe src="http://www.appsgeyser.com/social_widget/social_widget.php?width=300&height=160&apkName=WorldWap Menu_4109800&simpleVersion=no" width="310" height="180" vspace="0" hspace="0" frameborder="no" scrolling="no" seamless="" allowtransparency="true"> </iframe>
</div>
</div>
<div><div class="btn" id="mobile"><form action="http://google.com/m/search"><input type="text" name="q" style="border: 1px solid green; font-weight:bold;border-radius:3px;" maxlength="2048" placeholder="search Anything"/>
<input type="hidden" name="as_sitesearch" value="http://worldwap.blogmr.com"/>
<input type="submit" value="Search"/></form></div></div>
</br>
<br><div><p align="left"><h2 id="pages" class="table-title"><p align="left">Pages</h2>
<ul class="disclosure table group"> <li class="page_item page-
item-165"><p align="left"><a href="/pages/about-us.html">About Us</a></li> <li class="page_item page-item-86"><p align="left"><a href="/pages/advertise-with-us.html">
Advertise With Us</a></li><li
class="page_item page-item-163"><p align="left"><a href="/pages/contact-us.html">Contact Us</a></
li> <li class="page_item page-item-167"><p align="left"><a
href="/pages/ww-staff.html">Meet All Worldwap Admin </a></li><li class="page_item page-item-86"><p align="left"><a href="/pages/promote-your-music-video-here.html/">
Promotes Your Music/Video On Worldwap</a> </li> </ul> <hr/>
<div style="text-align: center;">
<p>Copyright © 2016 Ayodele Segun Flex</p>
<p><a href="http://m.facebook.com/ayodele.segun.7509"><img src="http://4.bp.blogspot.com/-pcwP7BgEzR8/UvqY5Jia71I/AAAAAAAADNI/ICJVKDOXOBw/s1600/facebook.png" width="32" height="32" border="0"></a> <a href="http://twitter.com/Worlwap_united"><img src="http://2.bp.blogspot.com/-f-tiBr1m6EQ/UvqZCFuzmLI/AAAAAAAADNQ/YpIrgbNBUyw/s1600/twitter.png" border="0"></a> <a href="http://instagram.com/naijaloadedcom" target="_blank"><img src="http://3.bp.blogspot.com/-nlqAYz2XeuU/UvqZesb_A-I/AAAAAAAADNY/WGY48vixDwE/s1600/instagram-icon.png" border="0"></a> <a href="http://www.naijaloaded.com.ng/2014/09/04/bbm-join-naijaloaded-bbm-channel-today-exclusive-music-updates/" target="_blank"><img src="http://1.bp.blogspot.com/-MQjrowgtvII/VChV1eTNHBI/AAAAAAAADe8/dj-pP9frenU/s1600/bbm32.png" border="0"></a>
</center></p>
<p align="center"><a href="/pages/about-us.html/"><strong>About Us</strong></a> | <a href=http:"/page/advertise-with-us
html"><strong>Advertise</strong></a> | <a href="http://worldwap.blogmr.com/login.html/"><strong>Login</strong></a> | <a href="http://worldwap.blogmr.com/follow.html/"><strong>Follow Us</strong></a> | <a href="/pages/ww-staff.html/"><strong>Ww Staff</strong></a> | <a href="/pages/privacy-policy.html/"><strong>Privacy Policy</strong></a><br>
<br><script type="text/javascript" src="http://xslt.alexa.com/site_stats/js/s/a?url=worldwap.blogmr.com"></script>
<br><a href="http://www.quick-counter.net/" title="HTML hit counter - Quick-counter.net"><img src="http://www.quick-counter.net/aip.php?tp=bt&tz=America%2FArgentina%2FBuenos_Aires" alt="HTML hit counter - Quick-counter.net" border="0" /></a>
Copy code