rebase rss.xml
This commit is contained in:
parent
eeea97ce79
commit
31487cfba1
3 changed files with 44 additions and 27 deletions
|
|
@ -1,5 +1,3 @@
|
||||||
# My Portfolio.
|
# My Portfolio.
|
||||||
|
|
||||||
## Basic representation for the site in html/css and Javascript.
|
a simple website for my musings.
|
||||||
|
|
||||||
Needs lot of content and posts to fill in.
|
|
||||||
|
|
|
||||||
|
|
@ -161,10 +161,11 @@
|
||||||
<li class="navbar-item">
|
<li class="navbar-item">
|
||||||
<button class="navbar-link" data-nav-link>Projects</button>
|
<button class="navbar-link" data-nav-link>Projects</button>
|
||||||
</li>
|
</li>
|
||||||
|
<!---
|
||||||
<li class="navbar-item">
|
<li class="navbar-item">
|
||||||
<button class="navbar-link" data-nav-link>Blog</button>
|
<button class="navbar-link" data-nav-link>Blog</button>
|
||||||
</li>
|
</li>
|
||||||
|
--->
|
||||||
|
|
||||||
<li class="navbar-item">
|
<li class="navbar-item">
|
||||||
<button class="navbar-link" data-nav-link>Contact</button>
|
<button class="navbar-link" data-nav-link>Contact</button>
|
||||||
|
|
@ -941,6 +942,7 @@ with other vehicle teams. </p>
|
||||||
- #BLOG
|
- #BLOG
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
<article class="blog" data-page="blog">
|
<article class="blog" data-page="blog">
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
|
|
@ -950,7 +952,6 @@ with other vehicle teams. </p>
|
||||||
|
|
||||||
<section class="blog-posts">
|
<section class="blog-posts">
|
||||||
|
|
||||||
<!--
|
|
||||||
<ul class="blog-posts-list">
|
<ul class="blog-posts-list">
|
||||||
|
|
||||||
<li class="blog-post-item">
|
<li class="blog-post-item">
|
||||||
|
|
@ -1122,11 +1123,10 @@ with other vehicle teams. </p>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
-->
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
--->
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
- #CONTACT
|
- #CONTACT
|
||||||
|
|
|
||||||
49
rss.xml
49
rss.xml
|
|
@ -1,20 +1,39 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<rss version="2.0">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
<channel>
|
<atom:link href="http://yoursite.com/feed.xml" rel="self" type="application/rss+xml" />
|
||||||
<title>W3Schools Home Page</title>
|
<title>YourSite</title>
|
||||||
<link>https://www.w3schools.com</link>
|
<link>http://YourSite.com</link>
|
||||||
<description>Free web building tutorials</description>
|
<description>Something Describing Your Site</description>
|
||||||
|
<language>en-us</language>
|
||||||
|
<image>
|
||||||
|
<title>Picture Title</title>
|
||||||
|
<link>http://YourSite.com</link>
|
||||||
|
<url>http://yoursite.com/yourpicture.gif</url>
|
||||||
|
<width>70</width>
|
||||||
|
<height>55</height>
|
||||||
|
</image>
|
||||||
<item>
|
<item>
|
||||||
<title>RSS Tutorial</title>
|
<title>Web Page 1 Title</title>
|
||||||
<link>https://www.w3schools.com/xml/xml_rss.asp</link>
|
<pubDate>Mon, 6 Sep 2010 12:40:21 GMT</pubDate>
|
||||||
<description>New RSS tutorial on W3Schools</description>
|
<link>http://yoursite.com/webpage1.html</link>
|
||||||
|
<guid>http://yoursite.com/item001</guid>
|
||||||
|
<description>Information about Web Page 1</description>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<title>XML Tutorial</title>
|
<title>Web Page 2 Title</title>
|
||||||
<link>https://www.w3schools.com/xml</link>
|
<pubDate>Mon, 6 Sep 2010 12:40:21 GMT</pubDate>
|
||||||
<description>New XML tutorial on W3Schools</description>
|
<link>http://yoursite.com/webpage2.html</link>
|
||||||
|
<guid>http://yoursite.com/item002</guid>
|
||||||
|
<description>Information about Web Page 2</description>
|
||||||
</item>
|
</item>
|
||||||
</channel>
|
<item>
|
||||||
|
<title>Web Page 3 Title</title>
|
||||||
|
<pubDate>Mon, 6 Sep 2010 12:40:21 GMT</pubDate>
|
||||||
|
<link>http://yoursite.com/webpage3.html</link>
|
||||||
|
<guid>http://yoursite.com/item003</guid>
|
||||||
|
<description>Information about Web Page 3</description>
|
||||||
|
</item>
|
||||||
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
>>>>>>> 3c90833 (comment blog section)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue