<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Welcome</title>
	<atom:link href="http://xron.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xron.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 20 Nov 2007 13:35:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>ru</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='xron.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d41fd81fc068910028454dda31ed60b1?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Welcome</title>
		<link>http://xron.wordpress.com</link>
	</image>
			<item>
		<title>SEO for WordPress &#8211; The Complete Guide</title>
		<link>http://xron.wordpress.com/2007/11/20/seo-for-wordpress-the-complete-guide/</link>
		<comments>http://xron.wordpress.com/2007/11/20/seo-for-wordpress-the-complete-guide/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 13:35:47 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/11/20/seo-for-wordpress-the-complete-guide/</guid>
		<description><![CDATA[&#160;
I’m an SEO and I have been working a lot with WordPress, here I give you all my tips for you to rank very well in Google with your blog.
UPDATE: Check this blog post for a better guide.


Quick Facts

There are 55 million blogs out there, if you don’t stand out you will have no chance.
The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=21&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&nbsp;</p>
<blockquote><p>I’m an <acronym>SEO</acronym> and I have been working a lot with WordPress, here I give you all my tips for you to rank very well in Google with your blog.
<p>UPDATE: Check <a href="http://www.mattcutts.com/blog/whitehat-seo-tips-for-bloggers/">this blog post</a> for a better guide.</p>
</blockquote>
<p><span id="more-21"></span></p>
<blockquote><h4>Quick Facts</h4>
<ol>
<li>There are 55 million blogs out there, if you don’t stand out you will have no chance.
<li>The first second of a visitors attention is the most crucial.
<li>Your main traffic should come to articles and posts inside your blog, not the home page.
<li>Search engine rankings relies heavily upon the quality and quantity of links to your blog when they determine the ranking.
<li>The best way to get links is by natural recommendations from other bloggers or web site owners. </li>
</ol>
<h4>Section 1: Optimize Your Blog</h4>
<p>Usually the WordPress themes are well designed and structured already but there are a number of things you really should do to improve it for better optimization for search engines.<br />
<h5>Using the best URLs</h5>
<p>To enable the permalinks is easy and you have probably already done that, just go to Options -&gt; Permalinks in the admin panel. But what format is the best to choose? The structure /%postname%/ &#8211; nothing else. This is best because your URLs to your articles should <em>never</em> change. And if you have it like this it does not matter if you change the category of the article or republish it with a new date, it will always be the same URL (more about that later). And if you happen to have two posts with the same title it is not a problem as WordPress will automatically add “-2″ in the end.
<p>Have you been using the wrong format? Well, if your blog is not totally new you should <strong>not</strong> change. It is not vital and for the next time you make a blog you know how to make it right.<br />
<h6>Handling URL Canonization</h6>
<p>Every WordPress blog has an issue in which there are 4 different URLs for the same post and this has to be fixed to prevent dilution. Follow my guide on how to fix it <a href="http://www.jimwestergren.com/wordpress-users-sharpen-your-urls-with-google/">here</a>.<br />
<h5>Title Tags</h5>
<p>The title tag is the most important HTML-tag in terms of SEO.
<p>Here are different versions you should use inside the &lt;title&gt;&lt;/title&gt; located in theme/header.php
<p>Optimum ranking:
<pre><code>&lt;?php if(is_home()) { echo 'Your blogs name | Few important words'; } else { wp_title('') ;} ?&gt;</code></pre>
<p>For branding purposes:
<pre><code>&lt;?php if(is_home()) { echo 'Your blogs name | Few important words'; } else { Your blogs name: wp_title('') ;} ?&gt;</code></pre>
<h6>The best title tag solution for advanced users</h6>
<p>Either install and properly use the <a href="http://www.netconcepts.com/seo-title-tag-plugin/">SEO Title Tag plugin</a> or do the following:</p>
<ol>
<li>Download and install <a href="http://guff.szub.net/2005/07/21/post-templates-by-category/">this plugin</a>.
<li>Replace &lt;?php get_header(); ?&gt; with the context in header.php on single.php, page.php and category.php.
<li>Work out the best titles for the different versions and use the plugin to create different versions of category.php and single.php with their own versions of title tags. For example if your category with ID 5 is “SEO News” you could have the following title tag in single-cat-5.php:
<pre><code>&lt;title&gt;SEO News: &lt;?php { wp_title('') ;} ?&gt;&lt;/title&gt;</code></pre>
<p>In category.php you could have:
<pre><code>&lt;title&gt;&lt;?php { wp_title('') ;} ?&gt; | Your Name&lt;/title&gt;</code></pre>
</li>
</ol>
<h5>Headings</h5>
<p>Headings are defined by HTML with H1 (largest) to H6 (smallest). You need to use them in your articles when you write. Your article title should be in a main heading (H1), sub headings with H2 and small headings with H3.</p>
<p>Make sure that in theme/single.php this code &lt;?php the_title(); ?&gt; is wrapped in H1 so that it looks like:
<pre><code>&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</code></pre>
<p>If your theme designer already used a specific CSS design for the heading tags you can do like this:</p>
<ol>
<li>Open up theme/single.php and add &lt;div class=”singleheadings”&gt; to the top after &lt;?php get_header(); ?&gt; and &lt;/div&gt; to the bottom before &lt;?php get_footer(); ?&gt;.
<li>Add then add for example the following lines of CSS to your CSS file:
<pre><code>
.singleheadings h1 {font-size:XXpx;font-family:XX}
.singleheadings h2 {font-size:XXpx;font-family:XX}
.singleheadings h3 {font-size:XXpx;font-family:XX}</code></pre>
</li>
</ol>
<p>You can change your quicktags by for example using <a href="http://drnoble.co.uk/archives/2005-01-15/updated-wordpress-quicktags-script/">this file</a> instead (also add H2 to the file) so that you easily can insert heading tags when you write.</p>
<h5>Navigation</h5>
<p>Most of the link power is coming to the home page of your blog and gets distributed evenly among the rest of the links on that page. So in additional to having a good navigation structure for your visitors also do the following:</p>
<ul>
<li>Have links to the most important articles and pages from your home page. That can easily be achieved by making a category with your best articles and using the <a href="http://watershedstudio.com/portfolio/software/wp-category-posts.html">WP Category Post</a> plugin to make a list of them on the index.php file.
<li>Install the <a href="http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/">Related Posts</a> plugin and have your articles link to similar articles.
<li>Also link yourself to previous articles you have written.
<li>Place the attribute rel=”nofollow” on links that are totally useless for search engines such as to RSS feeds for the blog and comment links. In case you want to remove the nofollow on the comment links make sure you check the author links before approval as it is important that you don’t link to bad sites from your blog.
<li>You should not have hundreds of external links on the home page, if you have that I recommend that you place them on a separate page. </li>
</ul>
<h5>Site Map</h5>
<p>A Site Map is where your visitors go to navigate and find specific articles and posts on your blog. It is also a place for search engines to find links to all your pages on your blog.</p>
<p>Use <a href="http://www.jimwestergren.com/tutorial-automatic-sitemap-in-wordpress/">my article on how to make an automatic WordPresss Site Map</a> and add one for your blog. I prefer that you make the first version in the guide.</p>
<h6>What about a Google Sitemap?</h6>
<p>It is not needed. There is no reason for a WordPress blog with a proper navigation structure to submit a Google Sitemap other than for information purposes. A Google Sitemap does not improve your ranking, only crawling, and that is not a problem.</p>
<h5>Design</h5>
<p>Everyone has different tastes about design but here are points to think about when you design your blog:</p>
<ul>
<li>Keep the design simple, very simple.
<li>Have the body text big with big and clear headings.
<li>For some reason blogs are not liked in the big social network sites (like digg, reddit etc) so make your theme unique and try to make it look like a site and not a blog.
<li>Make sure nothing steals attention from your text.
<li>The text width should not be longer than one and a half alphabet, even shorter.
<li>When a visitor reaches an article on your blog, the text should be seen instantly. Have the text as far up as possible. A visitor should not have to scroll to reach the content.
<li>If you are not making decent money with ads I suggest you to erase all ads you have on the blog. </li>
</ul>
<p>References to follow:</p>
<ul>
<li><a href="http://www.webdesignfromscratch.com/web-2.0-design-style-guide.cfm">Web 2.0 how-to design style guide</a></li>
</ul>
<h5>What About the Meta Tags?</h5>
<p>There are various WP plugins out there for this but to be honest and frank I can tell you that they are not worth the effort. The meta keywords tag are not used anymore (or extremely little) in the ranking calculation and while the meta description tag can show up in the <acronym>SERPs</acronym> I consider the snippet of text the visitor gets being better.</p>
<h5>CSS Positioning</h5>
<p>It has been said that by providing the important content first in the source code it will make a positive difference in your search engine ranking. I am not sure if this is true, but it won’t hurt to do it. For example on this blog the navigation on the left is in the bottom of the code.</p>
<h4>Section 2: How to Craft Your Articles</h4>
<p>You should read the entire section of <a href="http://www.seomoz.org/articles/bg5.php#5c">Authoring High Quality Content</a> by Mr. Fishkin but I give you here a very quick summary as it relates to this article.</p>
<p>First the most important quote:</p>
<blockquote>
<h6>One Great Page is Worth a Thousand Good Pages</h6>
<p>While hundreds or dozens of on-topic pages that cover sections of an industry are valuable to a website’s growth, it is actually far better to invest a significant amount of time and energy producing a few articles/resources of truly exceptional quality. To create documents that become “industry standard” on the web and are pointed to time after time as the “source” for further investigations, claims, documents, etc. is to truly succeed in the rankings battle. The value of “owning” this traffic and link source far outweighs a myriad of articles that are rarely read or linked to.</p>
</blockquote>
<p>Write articles or posts that serves as a stand alone document. This means there is everything valuable collected on that page on that specific topic. For example a stand alone document on “SEO for WordPress” should have everything on that page and the reader should not need any other articles on that topic.</p>
<h6>Better 1 great article that you revise 10 times than 10 smaller ok articles.</h6>
<p>To do this you can also rewrite and republish your old articles with the current time to show up again as the latest article.</p>
<h6>Include links to more reading if applicable</h6>
<p>Withing or at the end of your article you should link to other sources so that the reader can read more if he is interested. You can also use this as sources if you got your writing materials from other places.</p>
<h5>Headlines</h5>
<p>You should write the kind of headlines to your articles that:</p>
<ul>
<li>Contains important keyword combinations or phrase for ranking
<li>Describes with great interest what the article is about
<li>Makes the reader want to read it and clicks on it in the <acronym>SERPs</acronym>
<li>And is short and to the point </li>
</ul>
<h4>Section 3: Increase User Interaction</h4>
<ul>
<li>Use polls from for example <a href="http://www.polldaddy.com/">Poll Daddy</a>.
<li>Increase the commenting field for longer user comments and better interaction. This also provides more unique content to your articles.
<li>Install the <a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe to Comments plugin.</a>
<li>Actually do reply to your commenters and answer their questions.
<li>If you revise an article based on a comment, do link and give credit to the commenter. </li>
</ul>
<h4>Section 4: Get Links</h4>
<ul>
<li>The art of writing the kind of content that get natural links is called link baiting. See my article on that with a list of ideas <a href="http://www.jimwestergren.com/link-bait/">here</a>.
<li>Post your link baits on the major social network sites such as digg, reddit and the others.
<li>Install my <a href="http://www.jimwestergren.com/link-to-me-textbox-wordpess-plugin/">Link to Me Textbox WordPess Plugin</a> which provides an automatic HTML box of code for easy linking to you.
<li>Regularly link and reference other bloggers in your field in your posts to get attention from them. You loose nothing of it and many of them will return the favor and link to you. Also comment on their blogs to make them discover your blog.
<li>Read and follow my <a href="http://www.jimwestergren.com/link-building-guide/">Link Building Guide</a></li>
</ul>
</blockquote>
<p><a href="http://www.jimwestergren.com/seo-for-wordpress-blogs/">SEO for WordPress &#8211; The Complete Guide</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=21&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/11/20/seo-for-wordpress-the-complete-guide/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>
	</item>
		<item>
		<title>seo site:work.com.ua &#8211; Google Search</title>
		<link>http://xron.wordpress.com/2007/11/20/seo-siteworkcomua-google-search/</link>
		<comments>http://xron.wordpress.com/2007/11/20/seo-siteworkcomua-google-search/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 07:14:25 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/11/20/seo-siteworkcomua-google-search/</guid>
		<description><![CDATA[&#160;
seo site:work.com.ua &#8211; Google Search
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=20&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&nbsp;</p>
<p><a href="http://www.google.com/search?num=100&amp;hl=en&amp;newwindow=1&amp;client=firefox-a&amp;rls=org.mozilla%3Aru%3Aofficial&amp;q=seo+site%3Awork.com.ua&amp;btnG=Search">seo site:work.com.ua &#8211; Google Search</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=20&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/11/20/seo-siteworkcomua-google-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>
	</item>
		<item>
		<title>Транспорт в Бухаресте</title>
		<link>http://xron.wordpress.com/2007/04/25/%d0%a2%d1%80%d0%b0%d0%bd%d1%81%d0%bf%d0%be%d1%80%d1%82-%d0%b2-%d0%91%d1%83%d1%85%d0%b0%d1%80%d0%b5%d1%81%d1%82%d0%b5/</link>
		<comments>http://xron.wordpress.com/2007/04/25/%d0%a2%d1%80%d0%b0%d0%bd%d1%81%d0%bf%d0%be%d1%80%d1%82-%d0%b2-%d0%91%d1%83%d1%85%d0%b0%d1%80%d0%b5%d1%81%d1%82%d0%b5/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 14:04:39 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/04/25/%d0%a2%d1%80%d0%b0%d0%bd%d1%81%d0%bf%d0%be%d1%80%d1%82-%d0%b2-%d0%91%d1%83%d1%85%d0%b0%d1%80%d0%b5%d1%81%d1%82%d0%b5/</guid>
		<description><![CDATA[Соединения 
Бухарест имеет достаточные связи с большинством европейских столиц и крупнейших городов в Румынии но она может быть трудно найти прямой рейс в Бухарест из-за пределов Европы. Начиная июня 2007 года, &#34;Дельта эрлайнз&#34; [1] откроет прямое сообщение между Бухарестом и Нью-Йорке Город (аэропорт JFK). Скидки авиакомпаний были, выполняющей рейсы в Бухаресте с 2004 года Но [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=17&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Соединения </p>
<p>Бухарест имеет достаточные связи с большинством европейских столиц и крупнейших городов в Румынии но она может быть трудно найти прямой рейс в Бухарест из-за пределов Европы. Начиная июня 2007 года, &quot;Дельта эрлайнз&quot; [1] откроет прямое сообщение между Бухарестом и Нью-Йорке Город (аэропорт JFK). Скидки авиакомпаний были, выполняющей рейсы в Бухаресте с 2004 года Но лишь в конце 2006 &#8211; начале 2007 года, что число таких рейсов, серьезно начал расти, поэтому на данном этапе есть низким уровнем издержек полетов в различные пункты назначения в Италии, Испании, Германии, Франции, Великобритании, Венгрии, Словакии и Турции. <br />[править]<br />Аэропорты </p>
<p>Большинство рейсов как на международном, так и внутреннем, в землю Международном Аэропорту Анри Коандэ [2], расположенной в Отопени 18 км к северу от центра города. Аэропорт, построенный в 1968 году, прошли массовые модернизации с конца 90х годов и будет расширена. Он является основной базой для румынской Таром флагом перевозчика [3], и используется крупными международными авиакомпаниями. </p>
<p>Меньше Аурел Влайку Международный аэропорт [4] использовалась для коммерческих рейсов в начале 1920 года в; нынешней здание было закончено в 1952 года. Она расположена в Băneasa, гораздо ближе к центру, чем Отопени и используется главным образом &quot;дешевых&quot; авиакомпаний : BlueAir [5], [6] WizzAir, SkyEurope [7], [8] Germanwings, MyAir [9], Alpieagles [10]. </p>
<p>К сожалению, есть планы наиболее скидка рейсы в новый аэропорт будут строить на бывших военных аэродрома в Alexeni, около 70 км к востоку от Бухареста. <br />[править]<br />Город передачи <br />Аэропорту Анри Коандэ относительно недостатка средств надежных перевозки в центре Бухареста. Для этого туристы могут выбирать между аренде автомобиля, такси (Taxi Муха), limo, услуги общественного транспорта (автобусный маршрут 783). <br />Находясь в Бухаресте, собственно Аурел Влайку аэропорта легко добраться либо на такси или общественном транспорте. Автобусные линии 131 и 301 соединить его с Романа Площадь в центре Бухареста и автобусное сообщение с 205 Гара де Северном вокзале. <br />[править]<br />На автобусе </p>
<p>Там в автобусными маршрутами между Бухарестом и крупных городах Европы (особенно в южной Европе), а также многие крупные и средних городах на всей территории Румынии. Бухарест имеет несколько автобусных остановках : Бэнеаса (для северных маршрутов связано), Обор (на востоке), Filaret (юг), Alexandriei (юго-запад), Милитарь (запад), Вилл Офисов (северо-запад). </p>
<p>Графики для внутренних маршрутах можно получить здесь <br />[править]<br />На поезде </p>
<p>Бухарест связан посредством прямых ежедневных поезда для всех соседних стран в столицах (Белград, Будапешт, Кишинев, Киев , София), а также Вены, Венеции, Салониках, Стамбуле, Москве и, конечно, во всех крупных городах Румынии в 42 уездах. </p>
<p>Все международные поезда, и большинство дальних внутренних прибытия поездов на Гара де Норд (Северный) участок, расположены довольно неподалеку от центра города, с которой они связаны метро и несколько автобусов, тележки трамвайных линий. Некоторые поезда, и из Черноморского побережья использовать либо Гара де Est &#8211; Обор (Восточная) станции или Бэнеаса станции. Три других небольших станциях (Бассараб, Progresu и Республики) используются исключительно для местных и региональных поездов. </p>
<p>Графики для внутренних маршрутах можно получить здесь <br />[править]<br />На автомобиле </p>
<p>Города входами с севера (E15 дороге из Брашов), запад (A1 шоссе от Питешти), востоке (A2 (Sun) дороги от Констанцы), Юг (E20 дороге из Джурджу) и пути в центре города очень многолюдно, особенно в часы пик. В городе есть несколько мест для стоянки и некоторые средние улицы находятся в плохом состоянии.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=17&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/04/25/%d0%a2%d1%80%d0%b0%d0%bd%d1%81%d0%bf%d0%be%d1%80%d1%82-%d0%b2-%d0%91%d1%83%d1%85%d0%b0%d1%80%d0%b5%d1%81%d1%82%d0%b5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>
	</item>
		<item>
		<title>Посольство франции в украине</title>
		<link>http://xron.wordpress.com/2007/04/17/%d0%9f%d0%be%d1%81%d0%be%d0%bb%d1%8c%d1%81%d1%82%d0%b2%d0%be-%d1%84%d1%80%d0%b0%d0%bd%d1%86%d0%b8%d0%b8-%d0%b2-%d1%83%d0%ba%d1%80%d0%b0%d0%b8%d0%bd%d0%b5/</link>
		<comments>http://xron.wordpress.com/2007/04/17/%d0%9f%d0%be%d1%81%d0%be%d0%bb%d1%8c%d1%81%d1%82%d0%b2%d0%be-%d1%84%d1%80%d0%b0%d0%bd%d1%86%d0%b8%d0%b8-%d0%b2-%d1%83%d0%ba%d1%80%d0%b0%d0%b8%d0%bd%d0%b5/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 08:38:55 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/04/17/%d0%9f%d0%be%d1%81%d0%be%d0%bb%d1%8c%d1%81%d1%82%d0%b2%d0%be-%d1%84%d1%80%d0%b0%d0%bd%d1%86%d0%b8%d0%b8-%d0%b2-%d1%83%d0%ba%d1%80%d0%b0%d0%b8%d0%bd%d0%b5/</guid>
		<description><![CDATA[Франция

виза во францию в украине
адрес : Киев, ул Рейтарская 39, Индекс 01901
Телефоны Посольства: (380) 44 590 36 00
Телефоны Визового отдела посольства: (380) 44 590 36 80
Факс Посольства : (380) 44 590 36 24
посольство работает с 9.00 до 13.00 потом с 15.00 до 18.30
визовый отдел консульства принимает с 8.30 до 13.00
с понедельника по пятницу

Франция (французский : [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=9&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>Франция</h1>
</p>
<p><a href="http://www.easyvisa.com.ua/article/read/france_in_ukraine.html">виза во францию в украине</a></p>
<p>адрес : Киев, ул Рейтарская 39, Индекс 01901</p>
<p>Телефоны Посольства: (380) 44 590 36 00</p>
<p>Телефоны Визового отдела посольства: (380) 44 590 36 80</p>
<p>Факс Посольства : (380) 44 590 36 24</p>
<p>посольство работает с 9.00 до 13.00 потом с 15.00 до 18.30</p>
<p>визовый отдел консульства принимает с 8.30 до 13.00</p>
<p>с понедельника по пятницу</p>
</p>
<p>Франция (французский : МАИ : [fʁɑ̃s]), официально Французской Республики (на французском языке : Республика française, МАИ : [ʁepyblik fʁɑ̃sɛz]), является страной, чьи территории мегаполиса расположены в Западной Европе и что включает в себя также различные заморские островов и территорий, расположенных на других континентах. [11] Метрополия простирается от Средиземного моря до Ла-Манш и Северное море, и из Рейна до Атлантики. Французы часто называют Метрополия как L&#8217;Hexagone ( &quot;шестигранной &quot;), из-за геометрической формы ее территории.</p>
<p>Франция граничит с Бельгией, Люксембургом, Германией, Швейцарией, Италией, Монако, Андорры и Испании . В некоторых своих зарубежных департаментах Франции также разделяет сухопутные границы с Бразилией, Суринаме и Нидерландские Антильские острова. Франция также связана с Соединенным Королевством через туннель под Ла-Маншем, который проходит под Ла-Манш.</p>
<p>Французская Республика является демократия, которая организована как единое полуприцепов президентской республикой. Это развитая страна с шестого по величине экономики в мире. [12] Его основные идеалы выражены в Декларации прав человека и гражданина. Франция является одной из стран &#8211; основательниц Европейского союза, и имеет большую площадь из всех членов. Франция является также одним из основателей Организации Объединенных Наций, а также членом франкоязычных стран Группы восьми и Латинский союз. Он является одним из пяти постоянных членов Совета Безопасности ООН, обладающие правом вето, и он также признал, ядерная энергетика. Он считается одним из поста мировой войне великих держав. Франция является самым популярным международным туристическим центром в мире, получая более 75 миллионов иностранных туристов ежегодно. [13]</p>
<p>Название происходит от Франции Фрэнкса, германских племен, которые оккупировали северную Европу после падения Западная Римская империя. Точнее, регион вокруг Парижа, называемой Иль де Франса был французской королевской резиденцию.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=9&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/04/17/%d0%9f%d0%be%d1%81%d0%be%d0%bb%d1%8c%d1%81%d1%82%d0%b2%d0%be-%d1%84%d1%80%d0%b0%d0%bd%d1%86%d0%b8%d0%b8-%d0%b2-%d1%83%d0%ba%d1%80%d0%b0%d0%b8%d0%bd%d0%b5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>
	</item>
		<item>
		<title>Из Швейцарии в австрию</title>
		<link>http://xron.wordpress.com/2007/04/17/%d0%98%d0%b7-%d0%a8%d0%b2%d0%b5%d0%b9%d1%86%d0%b0%d1%80%d0%b8%d0%b8-%d0%b2-%d0%b0%d0%b2%d1%81%d1%82%d1%80%d0%b8%d1%8e/</link>
		<comments>http://xron.wordpress.com/2007/04/17/%d0%98%d0%b7-%d0%a8%d0%b2%d0%b5%d0%b9%d1%86%d0%b0%d1%80%d0%b8%d0%b8-%d0%b2-%d0%b0%d0%b2%d1%81%d1%82%d1%80%d0%b8%d1%8e/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 08:19:12 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/04/17/%d0%98%d0%b7-%d0%a8%d0%b2%d0%b5%d0%b9%d1%86%d0%b0%d1%80%d0%b8%d0%b8-%d0%b2-%d0%b0%d0%b2%d1%81%d1%82%d1%80%d0%b8%d1%8e/</guid>
		<description><![CDATA[Посольство австрии в Украине

Австрия (по-немецки : Австрии, см. также другие языки), официально Австрийская Республика (по-немецки : Республики, Австрии, МАМ : Организатор году. ʁepʊ&#8217;bli Организатор ø к году. Stə&#8217;ʁaɪç), имеет выхода к морю государство в Центральной Европе. Она граничит с Германией и Чешской Республикой, на севере, Словакией и Венгрией на востоке, Словенией и Италией на юге, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=7&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Посольство австрии в Украине</h2>
</p>
<p>Австрия (по-немецки : Австрии, см. также другие языки), официально Австрийская Республика (по-немецки : Республики, Австрии, МАМ : Организатор году. ʁepʊ&#8217;bli Организатор ø к году. Stə&#8217;ʁaɪç), имеет выхода к морю государство в Центральной Европе. Она граничит с Германией и Чешской Республикой, на севере, Словакией и Венгрией на востоке, Словенией и Италией на юге, и Швейцарией и Лихтенштейном &#8211; на западе. Столица &#8211; город Вена.</p>
<p>Истоки современной Австрии были выявлены еще в девятом веке когда селах Верхняя и нижняя Австрия стала более населенной. Имя &quot;Ostarrichi&quot; является первым документально в официальном документе от 996.Since тогда это слово превратилось в Германии Слово Австрии.</p>
<p>Австрия является парламентской представительной демократии состоящая из девяти федеральных земель и является одним из шести европейских стран, которые заявили о постоянном нейтралитете и одна из немногих стран, которая включает понятие вечного нейтралитета в свои конституции. Австрия является членом ООН с 1955 года и вступила в Европейский Союз в 1995 году.</p>
<p>Канцелярия: 01030, г. Киев, ул. Ивана Франко 33<br />Тел: (044) 289 57 59,220-57-59, 244-39-43, 244-39-42<br />Факс.: (044) 287 54 65, 230-23-52<br />E-mail: kiew-ob@bmaa.gv.atА</p>
<p>Адрес для писем: UA-01030 Киев A/C 209/8<br />Выдача паспортов: понедельник &#8211; пятница 15.00 &#8211; 16.00</p>
</p>
<p><a href="http://www.easyvisa.com.ua/article/a-221.html">виза в австрию в украине</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=7&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/04/17/%d0%98%d0%b7-%d0%a8%d0%b2%d0%b5%d0%b9%d1%86%d0%b0%d1%80%d0%b8%d0%b8-%d0%b2-%d0%b0%d0%b2%d1%81%d1%82%d1%80%d0%b8%d1%8e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>
	</item>
		<item>
		<title>Хронолог</title>
		<link>http://xron.wordpress.com/2007/04/12/%d0%a5%d1%80%d0%be%d0%bd%d0%be%d0%bb%d0%be%d0%b3/</link>
		<comments>http://xron.wordpress.com/2007/04/12/%d0%a5%d1%80%d0%be%d0%bd%d0%be%d0%bb%d0%be%d0%b3/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 13:07:37 +0000</pubDate>
		<dc:creator>xron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://xron.wordpress.com/2007/04/12/%d0%a5%d1%80%d0%be%d0%bd%d0%be%d0%bb%d0%be%d0%b3/</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=6&subd=xron&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img height="429" border="" width="429" style="margin:5px;" class="" alt="рик Картман" src="http://xron.files.wordpress.com/2007/04/cartman.jpg?w=429&#038;h=429" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/xron.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/xron.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/xron.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/xron.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/xron.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/xron.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/xron.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/xron.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/xron.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/xron.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/xron.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/xron.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=xron.wordpress.com&blog=722819&post=6&subd=xron&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://xron.wordpress.com/2007/04/12/%d0%a5%d1%80%d0%be%d0%bd%d0%be%d0%bb%d0%be%d0%b3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/78948f64ed25188cf370e867bcf261c2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">xron</media:title>
		</media:content>

		<media:content url="http://xron.files.wordpress.com/2007/04/cartman.jpg" medium="image">
			<media:title type="html">рик Картман</media:title>
		</media:content>
	</item>
	</channel>
</rss>