<?xml version="1.0" encoding="UTF-8" ?>
 <feed xmlns="http://www.w3.org/2005/Atom">
	<id>https://my-tribune.com/atom.xml</id>

	<title>my-tribune.com</title>
	<link rel="self"      type="application/atom+xml" href="https://my-tribune.com/atom.xml" />
	<link rel="alternate" type="text/html"            href="https://my-tribune.com/" />
	<link rel="hub"                                   href="https://pubsubhubbub.appspot.com/" />
	<author>
		<name>My Tribune</name>
		<uri>https://my-tribune.com/Owner</uri>
	</author>
	<updated>2022-02-24T13:54:07+02:00</updated>

	<entry>
		<id>https://my-tribune.com/news/Atom+feed</id>
		<title>Atom feed</title>
		<link rel="alternate" type="text/html" href="https://my-tribune.com/news/Atom+feed" />
		<author>
			<name>My Tribune</name>
			<uri>https://my-tribune.com/Owner</uri>
		</author>
		<published>2022-02-20T04:49:37+02:00</published>
		<updated>2022-02-20T04:49:37+02:00</updated>
		<summary>An Atom feed is available for all sites in the platform. It can be used by news readers applications on mobile/desktop/web and search engines.</summary>
		<content type="html">&lt;p&gt;We've added an Atom feed.&lt;/p&gt;
&lt;p&gt;It includes the articles modified in the last 90 days.
If those are less than 50 the list is extended to 50 with
the other articles ordered by last update time.&lt;/p&gt;
&lt;p&gt;Your visitors can use the feed with their favorite news reading
software - either mobile, web based or desktop.&lt;/p&gt;
&lt;p&gt;The feed has also been made available to the search engines.&lt;/p&gt;</content>
	</entry>

	<entry>
		<id>https://my-tribune.com/Usage</id>
		<title>Usage</title>
		<link rel="alternate" type="text/html" href="https://my-tribune.com/Usage" />
		<author>
			<name>My Tribune</name>
			<uri>https://my-tribune.com/Owner</uri>
		</author>
		<published>2022-02-16T22:11:16+02:00</published>
		<updated>2022-02-18T04:02:02+02:00</updated>
		<summary>Some useful recipes for MyTribune usage. E.g. how to embed images or videos in your articles.</summary>
		<content type="html">&lt;h2&gt;Writing you article content&lt;/h2&gt;
&lt;p&gt;It's simple, write your text like in any PlainText editor:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# What is this ?

My-Tribune is a blogging platform which allows you to publish your opinion:

  - Easily
  - For free
  - ...&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The text above generates a header line and unordered list.&lt;/p&gt;
&lt;p&gt;The used format is called &lt;strong&gt;&lt;em&gt;MarkDown&lt;/em&gt;&lt;/strong&gt;. Its simple formatting allows
the text to be written in a plaintext editor and stay readable, while
at the same time it can be used on the web.&lt;/p&gt;
&lt;p&gt;E.g. surround a word in stars &lt;code&gt;*&lt;/code&gt; to make it &lt;em&gt;Italic&lt;/em&gt;: &lt;code&gt;*Italic*&lt;/code&gt;&lt;br /&gt;
Or in double stars to make it &lt;strong&gt;Bold&lt;/strong&gt;: &lt;code&gt;**Bold**&lt;/code&gt;&lt;br /&gt;
Hyperlinks can be inserted right into the text.&lt;/p&gt;
&lt;p&gt;A lot more is possible with simple formatting markers.&lt;br /&gt;
Here's a guide with the details: &lt;a href=&quot;https://www.markdownguide.org/basic-syntax/&quot;&gt;https://www.markdownguide.org/basic-syntax/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When &lt;em&gt;MarkDown&lt;/em&gt; is not enough - Go ahead and insert your HTML tags, CSS styling
or even JavaScript.&lt;br /&gt;
It is your content, so you are in control.&lt;/p&gt;
&lt;hr /&gt;
&lt;h2&gt;Embedding YouTube videos&lt;/h2&gt;
&lt;p&gt;Get the sharing code by clicking on &lt;code&gt;Share -&amp;gt; Embed&lt;/code&gt; on the video page on &lt;em&gt;YouTube&lt;/em&gt;.
Paste the code in your article.&lt;/p&gt;
&lt;p&gt;In order your page to look well on all devices replace the fixed &lt;code&gt;width &amp;amp; height&lt;/code&gt;
with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;style=&quot;width: 100%; aspect-ratio: 16/9;&quot;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Just make sure to keep the video aspect ratio. If you're not sure what aspect
ratio you should specify just use the width and height values from the copied
&lt;code&gt;YouTube&lt;/code&gt; code. E.g. &lt;code&gt;aspect-ratio: 560/315;&lt;/code&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;h2&gt;Hosting your images in Google Photos&lt;/h2&gt;
&lt;p&gt;Here's how to insert &quot;Google Photos&quot; images in your articles.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add some images to an album and name the album e.g &quot;Blog&quot;.&lt;/li&gt;
&lt;li&gt;Open the album, click on &lt;code&gt;Share -&amp;gt; Copy link&lt;/code&gt;. You will see &quot;Shared&quot; under the album title right next to the date.&lt;/li&gt;
&lt;li&gt;Click on an image to open it full screen&lt;/li&gt;
&lt;li&gt;Right click on the image and choose &quot;Copy image address&quot;&lt;/li&gt;
&lt;li&gt;Insert this address in the end of your article like this:&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;[myimg]: https://lh3.ggl-uc.com/ALongURL=w867-h574-no?authuser=0 &quot;Tooltip txt&quot;&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;Then put this anywhere in your article content: &lt;code&gt;![myimg]&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Notes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&quot;myimg&quot; label is arbitrary.&lt;/li&gt;
&lt;li&gt;The workflow above is for the desktop version of &lt;em&gt;Google Chrome&lt;/em&gt; and is valid as of 2022-02-18.&lt;/li&gt;
&lt;li&gt;You can edit this part of the URL &quot;w867-h574-no?authuser=0&quot; and leave it as just &quot;w640&quot;. This way &quot;Google Photos&quot; will serve the image with the specified width and the aspect ratio will be kept.&lt;/li&gt;
&lt;li&gt;The procedure will work for other image providers. You only have to be able to get the image address/URL. Note though, that some providers do not allow embedding of their images on external websites (the term is hotlinking). If so you might need to drag&amp;amp;drop the image to your &quot;Blog&quot; album. Of course, make sure to have a valid &quot;licence&quot; to use it.&lt;/li&gt;
&lt;li&gt;The image &lt;em&gt;MarkDown&lt;/em&gt; tag can be specified like this &lt;code&gt;[![myimg]](https://some.url)&lt;/code&gt;. This way the image will be a link to &quot;&lt;a href=&quot;https://some.url&quot;&gt;https://some.url&lt;/a&gt;&quot;. You can get this &quot;some.url&quot; by sharing the image itself on &quot;Google Photos&quot; and using &quot;Copy link&quot;. Then, when clicked, it can then be viewed on the &quot;Google Photos&quot; site in full resolution, with meta information, etc. Alternatively the link can be to an album. Or anywhere else, including external websites.&lt;/li&gt;
&lt;/ul&gt;</content>
	</entry>

	<entry>
		<id>https://my-tribune.com/news/Dark+mode</id>
		<title>Dark mode</title>
		<link rel="alternate" type="text/html" href="https://my-tribune.com/news/Dark+mode" />
		<author>
			<name>My Tribune</name>
			<uri>https://my-tribune.com/Owner</uri>
		</author>
		<published>2022-02-05T20:02:28+02:00</published>
		<updated>2022-02-05T20:02:28+02:00</updated>
		<summary>Dark mode is now available for all sites in the platform.</summary>
		<content type="html">&lt;p&gt;Dark Mode is available.&lt;/p&gt;
&lt;p&gt;Switching is done via a button in the top navigation menu.&lt;/p&gt;
&lt;p&gt;Devices with an activated Dark Theme (and thus prefer dark mode)
will use it by default.&lt;/p&gt;</content>
	</entry>


</feed>
