Add a new page in the 'community' section of the website about social
networking sites. Link to del.icio.us page with ~30,000 unique web pages tagged as 'freebsd', flickr and youtube content tagged as 'freebsd', and freebsd facebook group. All of these have APIs so that we could scrape an RSS page and list the newest example content but for now the links only point to the search result pages on the above.
This commit is contained in:
parent
01321e126f
commit
ca64a3cdc1
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=32391
2 changed files with 84 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD: www/en/community/Makefile,v 1.16 2004/05/05 07:56:31 josef Exp $
|
||||
# $FreeBSD: www/en/community/Makefile,v 1.1 2005/10/04 05:44:55 murray Exp $
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
|
@ -9,4 +9,6 @@
|
|||
|
||||
DOCS= irc.sgml mailinglists.sgml newsgroups.sgml webresources.sgml
|
||||
|
||||
XMLDOCS+= social::${XML_EVENTS_EVENTS}:
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
81
en/community/social.xsl
Normal file
81
en/community/social.xsl
Normal file
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<!DOCTYPE xsl:stylesheet PUBLIC "-//FreeBSD//DTD FreeBSD XSLT 1.0 DTD//EN"
|
||||
"http://www.FreeBSD.org/XML/www/share/sgml/xslt10-freebsd.dtd" [
|
||||
<!ENTITY title "FreeBSD Social Networks">
|
||||
<!ENTITY email "freebsd-www">
|
||||
<!ENTITY % navinclude.community "INCLUDE">
|
||||
]>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS">
|
||||
<xsl:import href="http://www.FreeBSD.org/XML/www/lang/share/sgml/libcommon.xsl"/>
|
||||
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:output method="xml" encoding="&xml.encoding;"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:template match="events">
|
||||
<html>
|
||||
&header1;
|
||||
<body>
|
||||
|
||||
<div id="CONTAINERWRAP">
|
||||
<div id="CONTAINER">
|
||||
&header2;
|
||||
|
||||
<div id="CONTENT">
|
||||
<div id="SIDEWRAP">
|
||||
&nav;
|
||||
</div> <!-- SIDEWRAP -->
|
||||
|
||||
<div id="CONTENTWRAP">
|
||||
&header3;
|
||||
|
||||
<p>&os; is represented on a number of different social
|
||||
networks.</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>Thousands of users have tagged nearly 30,000
|
||||
unique web pages with the '<a
|
||||
href="http://del.icio.us/tag/freebsd">freebsd</a>' tag
|
||||
on <a href="http://del.icio.us">del.icio.us</a>.</li>
|
||||
|
||||
<li>There are thousands of photos from user group
|
||||
meetings, conferences, and hackathons tagged as '<a
|
||||
href="http://flickr.com/search/?z=t&ss=2&w=all&q=freebsd&m=text">freebsd</a>'
|
||||
on <a href="http://www.flickr.com">flickr</a>.</li>
|
||||
|
||||
<li>There are hundreds of videos from conferences,
|
||||
screencasts, and demonstrations relating to <a
|
||||
href="http://www.youtube.com/results?search_query=freebsd&search_type=&aq=f">FreeBSD</a>
|
||||
on <a href="http://www.youtube.com">YouTube</a>.</li>
|
||||
|
||||
<li>There is a <a
|
||||
href="http://www.facebook.com/home.php#/group.php?gid=2204657214">FreeBSD
|
||||
Users Group</a> on <a
|
||||
href="http://www.facebook.com">Facebook</a>.</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</div> <!-- CONTENTWRAP -->
|
||||
<br class="clearboth" />
|
||||
</div> <!-- CONTENT -->
|
||||
|
||||
<div id="FOOTER">
|
||||
©right;<br />
|
||||
&date;
|
||||
</div> <!-- FOOTER -->
|
||||
</div> <!-- CONTAINER -->
|
||||
</div> <!-- CONTAINERWRAP -->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
Loading…
Reference in a new issue