Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#13 2015-08-19 21:17:06

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

<!DOCTYPE html>
<html lang="en">
<txp:pax_grep from="'\s|\t|\r|\n'" to=""><txp:output_form form="revo_theme_variables" /><txp:output_form form="revo_widgets" /></txp:pax_grep>
<head>


<txp:arc_meta_open_graph />



<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<txp:output_form form="Page_Title" />
<meta name="author" content="Author's name" />
<meta name="rating" content="General" />
<meta name="generator" content="Textpattern" />
<meta name="copyright" content="Copyright 2010, Site Author. All rights reserved." />
<txp:output_form form="Meta_Robots_Loader" />
<txp:output_form form="Meta_Facebook" />
<link rel="shortcut icon" href="<txp:site_url />favicon.ico" />
<txp:feed_link flavor="rss" format="link" label="Feed" limit="5" section="articles" />
<txp:rvm_css format="link" />
<link rel="stylesheet" type="text/css" href="<txp:site_url />css/print/print.css" media="print" />
</head>
<body>

Andy follow your instructions, but does not work …… Help me please

Offline

#14 2015-08-20 06:30:26

monkeyninja
Plugin Author
From: Sheffield, UK
Registered: 2008-10-14
Posts: 239
Website

Re: arc_social_share - A Social Bookmarking Plugin

Hi riquialon,

What does the HTML markup generated by <txp:arc_meta_open_graph /> look like? Could you paste an example?

Offline

#15 2015-08-21 02:18:26

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

monkeyninja wrote #294244:

Hi riquialon,

What does the HTML markup generated by <txp:arc_meta_open_graph /> look like? Could you paste an example?

Andy arc_social you say on the label that it pege after the head, that I do

Look
<txp:arc_meta_open_graph />
Just including the above tag in your templates’ <head> tag will output tags for the following:-

og:site_name — your site name from your preferences
og:title — the article’s title, section name or category name
og:description — your page’s meta description
og:url — your page’s canonical URL
og:image — the article’s image
You can override the default values of any of these by passing a value to one of the tag’s attributes defined below. To disable one of the tags just pass an empty attribute value (e.g. title=’‘).

Attributes

site_name
title
description
url
image

Last edited by riquialon (2015-08-21 02:19:56)

Offline

#16 2015-08-21 13:38:20

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,303

Re: arc_social_share - A Social Bookmarking Plugin

Hi riquialon! That’s not what Andy meant. Have a look at the source code of any of your front side pages where there’s an arc_meta_open_graph tag at work. Now, in the head region, between the <head> tag and the tag <meta http-equiv="content-type" content="text/html; charset=UTF-8"> there should be the output of the arc_meta_open_graph tag. Please post that here.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#17 2015-08-22 14:56:14

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

uli wrote #294284:

Hi riquialon! That’s not what Andy meant. Have a look at the source code of any of your front side pages where there’s an arc_meta_open_graph tag at work. Now, in the head region, between the <head> tag and the tag <meta http-equiv="content-type" content="text/html; charset=UTF-8"> there should be the output of the arc_meta_open_graph tag. Please post that here.

Ok many thanks Uli, but then where should stick the label to arc_meta_open_graph functions …. really really do not understand .. ???

Offline

#18 2015-08-22 20:27:12

monkeyninja
Plugin Author
From: Sheffield, UK
Registered: 2008-10-14
Posts: 239
Website

Re: arc_social_share - A Social Bookmarking Plugin

Hi riquialon,

Could you show us the HTML generated by arc_meta_open_graph. We want to check that it is generating the correct HTML for you.

Offline

#19 2015-08-22 22:22:01

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

monkeyninja wrote #294310:

Hi riquialon,

Could you show us the HTML generated by arc_meta_open_graph. We want to check that it is generating the correct HTML for you.

you mean this

function arc_meta_open_graph($atts)
{ global $thisarticle, $prefs, $s, $c;

extract(lAtts(array( ‘site_name’ => $prefs[‘sitename’], ‘title’ => null, ‘description’ => null, ‘url’ => null, ‘image’ => null ), $atts)); $title = $title===null ? _arc_meta_title() : $title; $description = $description===null ? _arc_meta_description() : $description; $url = $url===null ? _arc_meta_url() : $url; $image = $image===null ? _arc_meta_image() : $image; $html = ‘’; if ($site_name) { $html .= “<meta property=\“og:site_name\” content=\”$site_name\” />”; } if ($title) { $html .= “<meta property=\“og:title\” content=\”$title\” />”; } if ($description) { $html .= “<meta property=\“og:description\” content=\”$description\” />”; } if ($url) { $html .= “<meta property=\“og:url\” content=\”$url\” />”; } if ($image) { $html .= “<meta property=\“og:image\” content=\”$image\” />”; } return $html; }

Offline

#20 2015-08-22 23:29:28

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,303

Re: arc_social_share - A Social Bookmarking Plugin

No, that seems to be the plugin code. Please take your browser and visit the website you are working on, the front side, not the Textpattern administration. In the browser’s menu bar, there will be a menu named something like either “View” or “Developer”, depending on which browser you are using. In one of these menus, there will be a menu item named something like “View source code” or “Show source” or something similar. Click that menu item. A new window opens with lots of text. That’s the HTML source code Andy wants to see. Please copy all of that text and post it here.

One more thing to consider: The theme you are using might have more than one page template. And as a new Textpattern user you might not know which page template is used for the page you are currently looking at. Hence I’d advise to put a tag in every page template.

In order to do that, visit the Textpattern administration of your website and have a look at Presentation > Pages whether there really is more than one page template. The arc_meta tag you posted here is placed at the right spot, as far as I know. If there is more than one page template, put that tag in each of these at the same spot as you posted. If you are not sure about where to put it, place it anywhere between <head> and </head>, then click the Save button. Once that is done for all page templates, do the steps I mentioned in the first paragraph of this post.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#21 2015-08-22 23:41:38

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,303

Re: arc_social_share - A Social Bookmarking Plugin

And one more idea: You are posting here in the arc_social_share thread. The arc_meta_open_graph tag is not comprised in this plugin. Have you downloaded/installed/activated the arc_meta plugin?


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#22 2015-08-23 00:16:42

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

uli wrote #294312:

No, that seems to be the plugin code. Please take your browser and visit the website you are working on, the front side, not the Textpattern administration. In the browser’s menu bar, there will be a menu named something like either “View” or “Developer”, depending on which browser you are using. In one of these menus, there will be a menu item named something like “View source code” or “Show source” or something similar. Click that menu item. A new window opens with lots of text. That’s the HTML source code Andy wants to see. Please copy all of that text and post it here.

One more thing to consider: The theme you are using might have more than one page template. And as a new Textpattern user you might not know which page template is used for the page you are currently looking at. Hence I’d advise to put a tag in every page template.

In order to do that, visit the Textpattern administration of your website and have a look at Presentation > Pages whether there really is more than one page template. The arc_meta tag you posted here is placed at the right spot, as far as I know. If there is more than one page template, put that tag in each of these at the same spot as you posted. If you are not sure about where to put it, place it anywhere between <head> and </head>, then click the Save button. Once that is done for all page templates, do the steps I mentioned in the first paragraph of this post.

<!DOCTYPE html>
<html lang="en">

<head>

<meta property="og:site_name" content="SLACKLIFEVZLA" /><meta property="og:title" content="SLACKLIFEVZLA" /><meta property="og:description" content="EQUILIBRIO PARA VIVIR" /><meta property="og:url" content="http://slacklinevzla.cuccfree.org/tp/" /><meta property="og:image" content="http://slacklinevzla.cuccfree.org/tp/images/13.jpg" />

<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>SLACKLIFEVZLA - Equilibrio para vivir</title>
<meta name="author" content="Author's name" />
<meta name="rating" content="General" />
<meta name="generator" content="Textpattern" />
<meta name="copyright" content="Copyright 2010, Site Author. All rights reserved." />

<meta name="robots" content="index, follow, noarchive" />



<link rel="shortcut icon" href="http://slacklinevzla.cuccfree.org/tp/favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://slacklinevzla.cuccfree.org/tp/rss/?section=articles&amp;limit=5" />
<link rel="stylesheet" media="screen" href="http://slacklinevzla.cuccfree.org/tp/css.php?n=default" />
<link rel="stylesheet" type="text/css" href="http://slacklinevzla.cuccfree.org/tp/css/print/print.css" media="print" />
</head>
<body>

<!-- - - - - - - - - - - - - - - - -  Skiplinks - - - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="topnav">
<span class="navlinks">
<a href="#nav_wrapper" class="skip" title="Skip Link">Skip to Navigation</a><span class="hideme">.</span>
<a href="#article" class="skip" title="Skip Link">Skip to Content</a><span class="hideme">.</span>
</span>
</div>

<!-- - - - - - - - - - - - - - - - -  Header - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="head">

<meta property="og:site_name" content="SLACKLIFEVZLA" /><meta property="og:title" content="SLACKLIFEVZLA" /><meta property="og:description" content="EQUILIBRIO PARA VIVIR" /><meta property="og:url" content="http://slacklinevzla.cuccfree.org/tp/" /><meta property="og:image" content="http://slacklinevzla.cuccfree.org/tp/images/13.jpg" />
<div id="head_wrapper">

<a class="rss" href="http://slacklinevzla.cuccfree.org/tp/rss/?section=articles" title="Subscribe to my Feed"></a>

<div id="search">
<form action="http://slacklinevzla.cuccfree.org/tp/search-results/" method="get">
<p><input type="text" class="navsearch" size="15" name="q" onblur="if(this.value=='') this.value=this.defaultValue;" onfocus="if(this.value==this.defaultValue) this.value='';" value="Search..." /> <input type="submit" value="Submit" class="search_button" title="Submit Search" /></p>
</form>
</div>
<h1><a href="http://slacklinevzla.cuccfree.org/tp/">SLACKLIFEVZLA</a></h1>
</div>
</div>

<!-- - - - - - - - - - - - - - - - -  Main Navigation - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="rp_list" class="rp_list">
<ul>
<li style="display: list-item;">
<div>
<img src="http://slacklinevzla.cuccfree.org/tp/site-design/img/1.png" alt=""/>
<span class="rp_links">
<a href="http://slacklinevzla.cuccfree.org/tp/articles/">Blog</a>
<a href="http://slacklinevzla.cuccfree.org/tp/about/">About</a>
<a href="http://slacklinevzla.cuccfree.org/tp/archive/">Archive</a>
<a href="http://slacklinevzla.cuccfree.org/tp/contact/">Contact</a>
</span>
</div>
</li>
</ul>
</div>

<!-- - - - - - - - - - - - - - - - -  Sidebar - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="container">
<div id="wrapper">
<div id="aside">
<div class="aside_wrapper">

<div class="sidebarBox">
<h3><a href="http://slacklinevzla.cuccfree.org/tp/about/">About</a></h3>
<div class="sidebarBox_inner" id="about_me">

	<p><img src="http://slacklinevzla.cuccfree.org/tp/images/13t.jpg" alt="" width="189" height="151" /><h3><p align="justify">&#8216;&#8216;<em>SlackLife</em> de Venezuela nace con el sueño de un grupo de jovenes interesados en explorar nuevas tendencias en la disciplina de los deportes extremos, especificamente del <em>Slackline</em> , con el deseo de proyectarse no solo a nivel nacional, sino tambien; Internacional, y la inquietud de crear, incentivar y desarrollar nuevos espacios recreativos implementando un enfoque holistico y de crecimiento personal en el maravilloso mundo del deporte&#8230;&#8217;&#8216;esto continuara&#8230;</p></h3></p>
</div>
</div>


<div class="sidebarBox">
<h3>Last 3 Comments</h3>
<div class="sidebarBox_inner">

<ul class="wet_recent_comments">
	<li><a href="http://slacklinevzla.cuccfree.org/tp/articles/1/welcome-to-your-site#c000001"><cite>Donald Swain</cite> <span>jul 22, 13:11</span> (Welcome to Your Site!)</a><p>I enjoy your site very much.</p></li>
</ul>
</div>
</div>





</div><!-- end div .aside_wrapper -->
</div><!-- end div #aside -->

<!-- - - - - - - - - - - - - - - - -  Main Content  - - - - - - - - - - - - - - - - - - - - - - - - - -  -->
<div id="blogs" />
<div class="REVO-posts-box">
<div class="REVO-posts-box-side">
<a rel="bookmark" href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar" class="REVO-posts-box-side-perma">
<div class="REVO-posts-box-side-type-"></div>
</a>
</div>
<div class="REVO-posts-box-content">
<h1><a href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar" title="Permanent link to &#39;Slackline es vivir, sentir y meditar&#39;">Slackline es vivir, sentir y&#160;meditar</a></h1>


	<p><center><a href="http://slacklinevzla.cuccfree.org/tp/images/14.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/14.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/2t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/2t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/3t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/3t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/4t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/4t.jpg" class="image" width="190" height="250" alt="" /></a><br />
<h1>&#8220;Es jugar, es bailar, es fluir, es amar, crear, y transformar&#8230;&#8221;</h1><a href="http://slacklinevzla.cuccfree.org/tp/images/5t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/5t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/6t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/6t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/7t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/7t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/12t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/12t.jpg" class="image" width="190" height="250" alt="" /></a></center></p>
<div class="sidebarBox">
<h3>| <a class="" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Facebook</a> | <a class="" href="http://twitter.com/home?status=Slackline+es+vivir%2C+sentir+y+meditar+http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Twitter</a> | <a class="" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;t=Slackline+es+vivir%2C+sentir+y+meditar">Share on Tumblr</a> | <a data-pin-do="buttonBookmark" href="http://www.pinterest.com/pin/create/button?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;media=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Fimages%2F13.jpg&amp;description=">Share on Pinterest</a> | <a class="" href="https://plus.google.com/share?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Google+</a> | <a class="" href="http://delicious.com/post?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on Delicious</a> | <a class="" href="https://getpocket.com/save?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Add to Pocket</a> | <a class="" href="http://www.reddit.com/submit?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on Reddit</a> | <a class="" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on StumbleUpon</a> |</h3></div>

<div class="REVO-posts-box-content-details">
<div class="REVO-posts-box-content-details-upper">
<div class="REVO-posts-box-content-timestamp">
<span class="REVO-posts-box-content-details-icon"></span>
<p>Posted: ago 15, 2015</p>
</div>
<div class="REVO-posts-box-content-comments">
<span class="REVO-posts-box-content-details-icon"></span>
<p>0 <a href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar#Comentario"  class="comments_invite">Comment</a></p>
</div>
</div>
<div class="REVO-posts-box-content-tags">
<span class="REVO-posts-box-content-details-icon"></span>
<p>Tag: </p>
</div>
</div>
</div>
</div>
<div class="REVO-posts-break"></div>
</div><!-- end div #article -->
</div><!-- end div #wrapper -->
</div><!-- end div #container -->
<!-- - - - - - - - - - - - - - - - -  Footer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

<div id="footer">
<div id="footer_bottom">
<div class="col">
<p>&copy; 2015 SLACKLIFEVZLAVZLA - All Rights Reserved.&nbsp;&nbsp;|&nbsp;&nbsp;
<a title="Get Textpattern" href="http://textpattern.com/">Powered by Textpattern</a> &nbsp;&nbsp;|&nbsp;&nbsp;Designed by<a class="resetlink" href="http://riquialon.cuccfree.org/wordpress/" target="_blank" title="ConsultoresRamp"><img class="reset_logo" src="http://slacklinevzla.cuccfree.org/tp/site-design/img/hma_gold.png" width="183" height="20" alt="Andreas Hecht &amp; and template modified by ConsultoresRamp" /></a></p>
</div>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type='text/javascript' src='http://slacklinevzla.cuccfree.org/tp/js/general.min.js'></script>
<script type='text/javascript' src='http://slacklinevzla.cuccfree.org/tp/js/scroll.js'></script>
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".tweet").tweet({username: "",avatar_size: null,count: 3,loading_text: "loading tweets..."});});</script>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <div style='display:none'><a href='http://freecss.net/' title='
<!-- Runtime:    0,0420 -->
<!-- Query time: 0,012816 -->
<!-- Queries: 29 -->
<!-- Memory: 4595Kb, end of textpattern() -->

Moderator’s annotation:
Edited to add Textile’s bc.. for better readability.
– Uli –

Last edited by uli (2015-08-23 15:31:21)

Offline

#23 2015-08-23 15:31:01

uli
Moderator
From: Cologne
Registered: 2006-08-15
Posts: 4,303

Re: arc_social_share - A Social Bookmarking Plugin

riquialon wrote #294314:

<meta property="og:image" content="http://slacklinevzla.cuccfree.org/tp/images/13.jpg" />

There it is.

BTW, the HTML is not complete, there’s something wrong with your your page template, at the end: There’s no closing body and html tag, and there is this unfinished stub <div style='display:none'><a href='http://freecss.net/' title=' at the end of the last but fourth line, after literally hundreds of space characters.


In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links

Offline

#24 2015-08-23 22:49:09

riquialon
Member
Registered: 2015-08-08
Posts: 11

Re: arc_social_share - A Social Bookmarking Plugin

uli wrote #294321:

There it is.

BTW, the HTML is not complete, there’s something wrong with your your page template, at the end: There’s no closing body and html tag, and there is this unfinished stub <div style='display:none'><a href='http://freecss.net/' title=' at the end of the last but fourth line, after literally hundreds of space characters.

Arrange Uli what you said, and I’m still with the same problem

<!DOCTYPE html>
<html lang="en">

<head>

<meta property="og:site_name" content="SLACKLIFEVZLA" /><meta property="og:title" content="SLACKLIFEVZLA" /><meta property="og:description" content="Sitio oficial de SlacklifeVzla" /><meta property="og:url" content="http://slacklinevzla.cuccfree.org/tp/" /><meta property="og:image" content="http://slacklinevzla.cuccfree.org/tp/images/13.jpg" />

<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>SLACKLIFEVZLA - Equilibrio para vivir</title>
<meta name="author" content="Author's name" />
<meta name="rating" content="General" />
<meta name="generator" content="Textpattern" />
<meta name="copyright" content="Copyright 2010, Site Author. All rights reserved." />

<meta name="robots" content="index, follow, noarchive" />


<link rel="shortcut icon" href="http://slacklinevzla.cuccfree.org/tp/favicon.ico" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://slacklinevzla.cuccfree.org/tp/rss/?section=articles&amp;limit=5" />
<link rel="stylesheet" media="screen" href="http://slacklinevzla.cuccfree.org/tp/css.php?n=default" />
<link rel="stylesheet" type="text/css" href="http://slacklinevzla.cuccfree.org/tp/css/print/print.css" media="print" />
</head>
<body>

<!-- - - - - - - - - - - - - - - - -  Skiplinks - - - - - - - - - - - - - - - - - - - - - - - - -  -->
<div id="topnav">
<span class="navlinks">
<a href="#nav_wrapper" class="skip" title="Skip Link">Skip to Navigation</a><span class="hideme">.</span>
<a href="#article" class="skip" title="Skip Link">Skip to Content</a><span class="hideme">.</span>
</span>
</div>

<!-- - - - - - - - - - - - - - - - -  Header - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="head">

<div id="head_wrapper">

<a class="rss" href="http://slacklinevzla.cuccfree.org/tp/rss/?section=articles" title="Subscribe to my Feed"></a>

<div id="search">
<form action="http://slacklinevzla.cuccfree.org/tp/search-results/" method="get">
<p><input type="text" class="navsearch" size="15" name="q" onblur="if(this.value=='') this.value=this.defaultValue;" onfocus="if(this.value==this.defaultValue) this.value='';" value="Search..." /> <input type="submit" value="Submit" class="search_button" title="Submit Search" /></p>
</form>
</div>
<h1><a href="http://slacklinevzla.cuccfree.org/tp/">SLACKLIFEVZLA</a></h1>
</div>
</div>

<!-- - - - - - - - - - - - - - - - -  Main Navigation - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="rp_list" class="rp_list">
<ul>
<li style="display: list-item;">
<div>
<img src="http://slacklinevzla.cuccfree.org/tp/site-design/img/1.png" alt=""/>
<span class="rp_links">
<a href="http://slacklinevzla.cuccfree.org/tp/articles/">Blog</a>
<a href="http://slacklinevzla.cuccfree.org/tp/about/">About</a>
<a href="http://slacklinevzla.cuccfree.org/tp/archive/">Archive</a>
<a href="http://slacklinevzla.cuccfree.org/tp/contact/">Contact</a>
</span>
</div>
</li>
</ul>
</div>

<!-- - - - - - - - - - - - - - - - -  Sidebar - - - - - - - - - - - - - - - - - - - - - - - - - - - -  -->

<div id="container">
<div id="wrapper">
<div id="aside">
<div class="aside_wrapper">

<div class="sidebarBox">
<h3><a href="http://slacklinevzla.cuccfree.org/tp/about/">About</a></h3>
<div class="sidebarBox_inner" id="about_me">

	<p><img src="http://slacklinevzla.cuccfree.org/tp/images/13t.jpg" alt="" width="189" height="151" /><h3><p align="justify">&#8216;&#8216;<em>SlackLife</em> de Venezuela nace con el sueño de un grupo de jovenes interesados en explorar nuevas tendencias en la disciplina de los deportes extremos, especificamente del <em>Slackline</em> , con el deseo de proyectarse no solo a nivel nacional, sino tambien; Internacional, y la inquietud de crear, incentivar y desarrollar nuevos espacios recreativos implementando un enfoque holistico y de crecimiento personal en el maravilloso mundo del deporte&#8230;&#8217;&#8216;esto continuara&#8230;</p></h3></p>
</div>
</div>


<div class="sidebarBox">
<h3>Last 3 Comments</h3>
<div class="sidebarBox_inner">

<ul class="wet_recent_comments">
	<li><a href="http://slacklinevzla.cuccfree.org/tp/articles/1/welcome-to-your-site#c000001"><cite>Donald Swain</cite> <span>jul 22, 13:11</span> (Welcome to Your Site!)</a><p>I enjoy your site very much.</p></li>
</ul>
</div>
</div>





</div><!-- end div .aside_wrapper -->
</div><!-- end div #aside -->

<!-- - - - - - - - - - - - - - - - -  Main Content  - - - - - - - - - - - - - - - - - - - - - - - - - -  -->
<div id="blogs">
<div class="REVO-posts-box">
<div class="REVO-posts-box-side">
<a rel="bookmark" href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar" class="REVO-posts-box-side-perma">
<div class="REVO-posts-box-side-type-"></div>
</a>
</div>
<div class="REVO-posts-box-content">
<h1><a href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar" title="Permanent link to &#39;Slackline es vivir, sentir y meditar&#39;">Slackline es vivir, sentir y&#160;meditar</a></h1>

	<p><center><a href="http://slacklinevzla.cuccfree.org/tp/images/14.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/14.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/2t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/2t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/3t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/3t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/4t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/4t.jpg" class="image" width="190" height="250" alt="" /></a><br />
<h1>&#8220;Es jugar, es bailar, es fluir, es amar, crear, y transformar&#8230;&#8221;</h1><a href="http://slacklinevzla.cuccfree.org/tp/images/5t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/5t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/6t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/6t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/7t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/7t.jpg" class="image" width="190" height="250" alt="" /></a><a href="http://slacklinevzla.cuccfree.org/tp/images/12t.jpg" target="_blank"><img src="http://slacklinevzla.cuccfree.org/tp/images/12t.jpg" class="image" width="190" height="250" alt="" /></a></center></p>
<div class="sidebarBox">
<h5>| <a class="" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Facebook</a> | <a class="" href="http://twitter.com/home?status=Slackline+es+vivir%2C+sentir+y+meditar+http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Twitter</a> | <a class="" href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;t=Slackline+es+vivir%2C+sentir+y+meditar">Share on Tumblr</a> | <a data-pin-do="buttonBookmark" href="http://www.pinterest.com/pin/create/button?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;media=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Fimages%2F13.jpg&amp;description=">Share on Pinterest</a> | <a class="" href="https://plus.google.com/share?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar">Share on Google+</a> | <a class="" href="http://delicious.com/post?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on Delicious</a> | <a class="" href="https://getpocket.com/save?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Add to Pocket</a> | <a class="" href="http://www.reddit.com/submit?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on Reddit</a> | <a class="" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fslacklinevzla.cuccfree.org%2Ftp%2Farticles%2F2%2Fslackline-es-vivir-sentir-y-meditar&amp;title=Slackline+es+vivir%2C+sentir+y+meditar">Share on StumbleUpon</a> |</h5></div>

<div class="REVO-posts-box-content-details">
<div class="REVO-posts-box-content-details-upper">
<div class="REVO-posts-box-content-timestamp">
<span class="REVO-posts-box-content-details-icon"></span>
<p>Posted: ago 15, 2015</p>
</div>
<div class="REVO-posts-box-content-comments">
<span class="REVO-posts-box-content-details-icon"></span>
<p>0 <a href="http://slacklinevzla.cuccfree.org/tp/articles/2/slackline-es-vivir-sentir-y-meditar#Comentario"  class="comments_invite">Comment</a></p>
</div>
</div>
<div class="REVO-posts-box-content-tags">
<span class="REVO-posts-box-content-details-icon"></span>
<p>Tag: </p>
</div>
</div>
</div>
</div>
<div class="REVO-posts-break"></div>
</div><!-- end div #article -->
</div><!-- end div #wrapper -->
</div><!-- end div #container -->
<!-- - - - - - - - - - - - - - - - -  Footer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<div id="footer">
<div id="footer_bottom">
<div class="col">
<p>&copy; 2015 SLACKLIFEVZLAVZLA - All Rights Reserved.&nbsp;&nbsp;|&nbsp;&nbsp;
<a title="Get Textpattern" href="http://textpattern.com/">Powered by Textpattern</a> &nbsp;&nbsp;|&nbsp;&nbsp;Designed by<a href="http://riquialon.cuccfree.org/wordpress/" target="_blank" title="ConsultoresRamp">Andreas Hecht &amp template modified by ConsultoresRamp</a></p>
</div>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type='text/javascript' src='http://slacklinevzla.cuccfree.org/tp/js/general.min.js'></script>
<script type='text/javascript' src='http://slacklinevzla.cuccfree.org/tp/js/scroll.js'></script>
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery(".tweet").tweet({username: "",avatar_size: null,count: 3,loading_text: "loading tweets..."});});</script>
</body></html>

Last edited by riquialon (2015-08-24 00:41:29)

Offline

Board footer

Powered by FluxBB