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.
|
||||
|
||||
## Basic representation for the site in html/css and Javascript.
|
||||
|
||||
Needs lot of content and posts to fill in.
|
||||
a simple website for my musings.
|
||||
|
|
|
|||
|
|
@ -161,10 +161,11 @@
|
|||
<li class="navbar-item">
|
||||
<button class="navbar-link" data-nav-link>Projects</button>
|
||||
</li>
|
||||
|
||||
<!---
|
||||
<li class="navbar-item">
|
||||
<button class="navbar-link" data-nav-link>Blog</button>
|
||||
</li>
|
||||
--->
|
||||
|
||||
<li class="navbar-item">
|
||||
<button class="navbar-link" data-nav-link>Contact</button>
|
||||
|
|
@ -941,6 +942,7 @@ with other vehicle teams. </p>
|
|||
- #BLOG
|
||||
-->
|
||||
|
||||
<!--
|
||||
<article class="blog" data-page="blog">
|
||||
|
||||
<header>
|
||||
|
|
@ -950,7 +952,6 @@ with other vehicle teams. </p>
|
|||
|
||||
<section class="blog-posts">
|
||||
|
||||
<!--
|
||||
<ul class="blog-posts-list">
|
||||
|
||||
<li class="blog-post-item">
|
||||
|
|
@ -1122,11 +1123,10 @@ with other vehicle teams. </p>
|
|||
</li>
|
||||
|
||||
</ul>
|
||||
-->
|
||||
|
||||
</section>
|
||||
|
||||
</article>
|
||||
--->
|
||||
|
||||
<!--
|
||||
- #CONTACT
|
||||
|
|
|
|||
59
rss.xml
59
rss.xml
|
|
@ -1,20 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<rss version="2.0">
|
||||
|
||||
<channel>
|
||||
<title>W3Schools Home Page</title>
|
||||
<link>https://www.w3schools.com</link>
|
||||
<description>Free web building tutorials</description>
|
||||
<item>
|
||||
<title>RSS Tutorial</title>
|
||||
<link>https://www.w3schools.com/xml/xml_rss.asp</link>
|
||||
<description>New RSS tutorial on W3Schools</description>
|
||||
</item>
|
||||
<item>
|
||||
<title>XML Tutorial</title>
|
||||
<link>https://www.w3schools.com/xml</link>
|
||||
<description>New XML tutorial on W3Schools</description>
|
||||
</item>
|
||||
</channel>
|
||||
|
||||
</rss>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<atom:link href="http://yoursite.com/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<title>YourSite</title>
|
||||
<link>http://YourSite.com</link>
|
||||
<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>
|
||||
<title>Web Page 1 Title</title>
|
||||
<pubDate>Mon, 6 Sep 2010 12:40:21 GMT</pubDate>
|
||||
<link>http://yoursite.com/webpage1.html</link>
|
||||
<guid>http://yoursite.com/item001</guid>
|
||||
<description>Information about Web Page 1</description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Web Page 2 Title</title>
|
||||
<pubDate>Mon, 6 Sep 2010 12:40:21 GMT</pubDate>
|
||||
<link>http://yoursite.com/webpage2.html</link>
|
||||
<guid>http://yoursite.com/item002</guid>
|
||||
<description>Information about Web Page 2</description>
|
||||
</item>
|
||||
<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>
|
||||
>>>>>>> 3c90833 (comment blog section)
|
||||
|
|
|
|||
Loading…
Reference in a new issue