rdf-rdfa 0.3.1.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.yardopts +2 -1
- data/Gemfile +18 -0
- data/History.md +14 -1
- data/README +291 -0
- data/README.md +236 -36
- data/Rakefile +7 -27
- data/UNLICENSE +24 -0
- data/VERSION +1 -1
- data/etc/basic.html +1 -1
- data/etc/profile.html +40 -0
- data/example-files/payswarm.html +449 -0
- data/example-files/payswarm.n3 +86 -0
- data/lib/rdf/rdfa.rb +5 -0
- data/lib/rdf/rdfa/format.rb +8 -4
- data/lib/rdf/rdfa/patches/graph_properties.rb +34 -0
- data/lib/rdf/rdfa/patches/nokogiri_hacks.rb +6 -0
- data/lib/rdf/rdfa/patches/string_hacks.rb +9 -0
- data/lib/rdf/rdfa/profile.rb +65 -41
- data/lib/rdf/rdfa/profile/xhtml.rb +36 -0
- data/lib/rdf/rdfa/profile/xml.rb +45 -0
- data/lib/rdf/rdfa/reader.rb +168 -92
- data/lib/rdf/rdfa/writer.rb +822 -0
- data/lib/rdf/rdfa/writer/haml_templates.rb +306 -0
- data/rdf-rdfa.gemspec +77 -23
- data/script/intern_vocabulary +83 -0
- data/script/parse +62 -27
- data/script/tc +87 -37
- data/spec/.gitignore +1 -0
- data/spec/matchers.rb +89 -154
- data/spec/profile_spec.rb +36 -21
- data/spec/{rdfa_reader_spec.rb → reader_spec.rb} +86 -159
- data/spec/spec_helper.rb +6 -29
- data/spec/test_helper.rb +97 -0
- data/spec/writer_spec.rb +385 -0
- metadata +203 -37
- data/spec/html4-manifest.yml +0 -1749
- data/spec/html5-manifest.yml +0 -1749
- data/spec/rdfa_helper.rb +0 -257
- data/spec/svgtiny-manifest.yml +0 -37
- data/spec/xhtml-manifest.yml +0 -1749
data/Rakefile
CHANGED
@@ -6,19 +6,19 @@ begin
|
|
6
6
|
require 'jeweler'
|
7
7
|
Jeweler::Tasks.new do |gemspec|
|
8
8
|
gemspec.name = "rdf-rdfa"
|
9
|
-
gemspec.summary = "RDFa reader for RDF.rb."
|
9
|
+
gemspec.summary = "RDFa reader/writer for RDF.rb."
|
10
10
|
gemspec.description = <<-DESCRIPTION
|
11
|
-
RDF::RDFa is an RDFa reader for Ruby using the RDF.rb library suite.
|
11
|
+
RDF::RDFa is an RDFa reader/writer for Ruby using the RDF.rb library suite.
|
12
12
|
DESCRIPTION
|
13
13
|
gemspec.email = "gregg@kellogg-assoc.com"
|
14
14
|
gemspec.homepage = "http://github.com/gkellogg/rdf-rdfa"
|
15
15
|
gemspec.authors = ["Gregg Kellogg"]
|
16
|
-
gemspec.add_dependency('rdf', '>= 0.3.
|
17
|
-
gemspec.add_dependency('
|
16
|
+
gemspec.add_dependency('rdf', '>= 0.3.3')
|
17
|
+
gemspec.add_dependency('haml', '>= 3.0.0')
|
18
|
+
gemspec.add_dependency('nokogiri', '>= 1.4.4')
|
18
19
|
gemspec.add_development_dependency('spira', '>= 0.0.12')
|
19
20
|
gemspec.add_development_dependency('rspec', '>= 2.5.0')
|
20
|
-
gemspec.add_development_dependency('rdf-spec', '>= 0.3.
|
21
|
-
gemspec.add_development_dependency('rdf-rdfxml', '>= 0.3.1')
|
21
|
+
gemspec.add_development_dependency('rdf-spec', '>= 0.3.3')
|
22
22
|
gemspec.add_development_dependency('rdf-isomorphic', '>= 0.3.4')
|
23
23
|
gemspec.add_development_dependency('yard')
|
24
24
|
gemspec.extra_rdoc_files = %w(README.md History.md AUTHORS CONTRIBUTORS)
|
@@ -42,26 +42,6 @@ RSpec::Core::RakeTask.new("doc:spec") do |spec|
|
|
42
42
|
spec.rspec_opts = ["--format", "html", "-o", "doc/spec.html"]
|
43
43
|
end
|
44
44
|
|
45
|
-
YARD::Rake::YardocTask.new
|
46
|
-
t.files = %w(lib/**/*.rb README.rdoc History.txt AUTHORS CONTRIBUTORS) # optional
|
47
|
-
end
|
48
|
-
|
49
|
-
desc "Generate RDF Core Manifest.yml"
|
50
|
-
namespace :spec do
|
51
|
-
task :prepare do
|
52
|
-
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
53
|
-
require 'rdf/rdfa'
|
54
|
-
require 'spec/rdfa_helper'
|
55
|
-
require 'fileutils'
|
56
|
-
|
57
|
-
%w(xhtml html4 html5 svgtiny).each do |suite|
|
58
|
-
yaml = manifest_file = File.join(File.dirname(__FILE__), "spec", "#{suite}-manifest.yml")
|
59
|
-
FileUtils.rm_f(yaml)
|
60
|
-
#RDF::RDFa.debug = true
|
61
|
-
RdfaHelper::TestCase.to_yaml(suite, yaml)
|
62
|
-
#RDF::RDFa.debug = false
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
45
|
+
YARD::Rake::YardocTask.new
|
66
46
|
|
67
47
|
task :default => :spec
|
data/UNLICENSE
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
This is free and unencumbered software released into the public domain.
|
2
|
+
|
3
|
+
Anyone is free to copy, modify, publish, use, compile, sell, or
|
4
|
+
distribute this software, either in source code form or as a compiled
|
5
|
+
binary, for any purpose, commercial or non-commercial, and by any
|
6
|
+
means.
|
7
|
+
|
8
|
+
In jurisdictions that recognize copyright laws, the author or authors
|
9
|
+
of this software dedicate any and all copyright interest in the
|
10
|
+
software to the public domain. We make this dedication for the benefit
|
11
|
+
of the public at large and to the detriment of our heirs and
|
12
|
+
successors. We intend this dedication to be an overt act of
|
13
|
+
relinquishment in perpetuity of all present and future rights to this
|
14
|
+
software under copyright law.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
19
|
+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
|
24
|
+
For more information, please refer to <http://unlicense.org/>
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.3
|
data/etc/basic.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
|
3
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" version="XHTML+RDFa 1.0">
|
4
4
|
<head>
|
5
5
|
<title>W3C standard prefixes</title>
|
6
6
|
</head>
|
data/etc/profile.html
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Web site profile: favicon, …</title>
|
7
|
+
<meta name="author" content="Karl Dubost" />
|
8
|
+
<link rel="stylesheet" href="/2005/10/w3cdoc.css" type="text/css" media="screen" title="W3C Documentation" charset="utf-8" />
|
9
|
+
</head>
|
10
|
+
<body>
|
11
|
+
<h1>Web site meta data profile: <abbr title="Favorite Icon">favicon</abbr>, …</h1>
|
12
|
+
<h2>Authors</h2>
|
13
|
+
<ul id="authors">
|
14
|
+
<li><a href="http://www.w3.org/People/Karl/">Karl Dubost</a></li>
|
15
|
+
</ul>
|
16
|
+
<p>As described in <a href="http://www.w3.org/TR/html401/struct/global.html#h-7.4.4.3">HTML4 Meta data profiles</a>.</p>
|
17
|
+
<dl class="profile">
|
18
|
+
<dt id="rel">rel</dt>
|
19
|
+
<dd>
|
20
|
+
<p><a rel="help" href="http://www.w3.org/TR/html401/struct/links.html#adef-rel">HTML4 definition of the 'rel' attribute.</a> Here is an additional value and its meaning.</p>
|
21
|
+
<div>
|
22
|
+
<h3>Web site</h3>
|
23
|
+
<dl>
|
24
|
+
<dt id="icon">icon</dt>
|
25
|
+
<dd>A small icon giving a visual hint for a Web site or a set of Web pages as defined in <cite><a href="http://www.w3.org/2005/10/howto-favicon">How to Add a Favicon to your Site</a></cite>.</dd>
|
26
|
+
<dt id="foaf">foaf</dt>
|
27
|
+
<dd>@@foaf definition@@.</dd>
|
28
|
+
<dt id="nofollow">nofollow</dt>
|
29
|
+
<dd>@@nofollow definition@@.</dd>
|
30
|
+
</dl>
|
31
|
+
</div>
|
32
|
+
</dd>
|
33
|
+
</dl>
|
34
|
+
|
35
|
+
<h2>Acknowledgments</h2>
|
36
|
+
<p><a href="http://www.w3.org/People/Dom">Dominique Hazaël-Massieux</a></p>
|
37
|
+
<h2>Copyright</h2>
|
38
|
+
<p class="policyfooter"><a rel="Copyright" href="/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2007 <a href="/"><acronym title="World Wide Web Consortium">W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.org/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href="/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a>, <a rel="Copyright" href="/Consortium/Legal/copyright-documents">document use</a> and <a rel="Copyright" href="/Consortium/Legal/copyright-software">software licensing</a> rules apply. Your interactions with this site are in accordance with our <a href="/Consortium/Legal/privacy-statement#Public">public</a> and <a href="/Consortium/Legal/privacy-statement#Members">Member</a> privacy statements.</p>
|
39
|
+
</body>
|
40
|
+
</html>
|
@@ -0,0 +1,449 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html dir="ltr" lang="en-US">
|
3
|
+
<head>
|
4
|
+
<meta charset="UTF-8" />
|
5
|
+
<title>Soft Breadsticks | PaySwarm Recipes Demo</title>
|
6
|
+
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
7
|
+
<link rel="stylesheet" type="text/css" media="all" href="https://recipes.payswarm.com/wp-content/themes/twentyten/style.css" />
|
8
|
+
<link rel="pingback" href="http://recipes.payswarm.com/xmlrpc.php" />
|
9
|
+
<link rel="alternate" type="application/rss+xml" title="PaySwarm Recipes Demo » Feed" href="https://recipes.payswarm.com/?feed=rss2" />
|
10
|
+
<link rel="alternate" type="application/rss+xml" title="PaySwarm Recipes Demo » Comments Feed" href="https://recipes.payswarm.com/?feed=comments-rss2" />
|
11
|
+
<link rel="alternate" type="application/rss+xml" title="PaySwarm Recipes Demo » Soft Breadsticks Comments Feed" href="https://recipes.payswarm.com/?feed=rss2&p=10185" />
|
12
|
+
<link rel='stylesheet' id='payswarm-style-css' href='https://recipes.payswarm.com/wp-content/plugins/payswarm/payswarm.css?ver=3.1' type='text/css' media='all' />
|
13
|
+
<script type='text/javascript' src='https://recipes.payswarm.com/wp-includes/js/l10n.js?ver=20101110'></script>
|
14
|
+
<script type='text/javascript' src='https://recipes.payswarm.com/wp-content/plugins/payswarm/payswarm.js?ver=3.1'></script>
|
15
|
+
<script type='text/javascript' src='https://recipes.payswarm.com/wp-includes/js/comment-reply.js?ver=20090102'></script>
|
16
|
+
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://recipes.payswarm.com/xmlrpc.php?rsd" />
|
17
|
+
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://recipes.payswarm.com/wp-includes/wlwmanifest.xml" />
|
18
|
+
<link rel='index' title='PaySwarm Recipes Demo' href='https://recipes.payswarm.com' />
|
19
|
+
<link rel='start' title='Carrot Cake' href='https://recipes.payswarm.com/?p=1' />
|
20
|
+
<link rel='prev' title='Snappy Stuffed Tomatillos' href='https://recipes.payswarm.com/?p=10184' />
|
21
|
+
<link rel='next' title='Sorbet and Berry Salad' href='https://recipes.payswarm.com/?p=10186' />
|
22
|
+
<meta name="generator" content="WordPress 3.1" />
|
23
|
+
<link rel='canonical' href='https://recipes.payswarm.com/?p=10185' />
|
24
|
+
</head>
|
25
|
+
|
26
|
+
<body class="single single-post postid-10185 single-format-standard">
|
27
|
+
<div id="wrapper" class="hfeed">
|
28
|
+
<div id="header">
|
29
|
+
<div id="masthead">
|
30
|
+
<div id="branding" role="banner">
|
31
|
+
<div id="site-title">
|
32
|
+
<span>
|
33
|
+
<a href="https://recipes.payswarm.com/" title="PaySwarm Recipes Demo" rel="home">PaySwarm Recipes Demo</a>
|
34
|
+
</span>
|
35
|
+
</div>
|
36
|
+
<div id="site-description">A WordPress powered PaySwarm Demo</div>
|
37
|
+
|
38
|
+
<img src="https://recipes.payswarm.com/wp-content/themes/twentyten/images/headers/food-q-c-940-198-5.jpg" width="940" height="198" alt="" />
|
39
|
+
</div><!-- #branding -->
|
40
|
+
|
41
|
+
<div id="access" role="navigation">
|
42
|
+
<div class="skip-link screen-reader-text"><a href="#content" title="Skip to content">Skip to content</a></div>
|
43
|
+
<div class="menu"><ul><li ><a href="https://recipes.payswarm.com/" title="Home">Home</a></li></ul></div>
|
44
|
+
</div><!-- #access -->
|
45
|
+
</div><!-- #masthead -->
|
46
|
+
</div><!-- #header -->
|
47
|
+
|
48
|
+
<div id="main">
|
49
|
+
|
50
|
+
<div id="container">
|
51
|
+
<div id="content" role="main">
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<div id="nav-above" class="navigation">
|
56
|
+
<div class="nav-previous"><a href="https://recipes.payswarm.com/?p=10184" rel="prev"><span class="meta-nav">←</span> Snappy Stuffed Tomatillos</a></div>
|
57
|
+
<div class="nav-next"><a href="https://recipes.payswarm.com/?p=10186" rel="next">Sorbet and Berry Salad <span class="meta-nav">→</span></a></div>
|
58
|
+
</div><!-- #nav-above -->
|
59
|
+
|
60
|
+
<div id="post-10185" class="post-10185 post type-post status-publish format-standard hentry category-french category-rice-grains">
|
61
|
+
<h1 class="entry-title">Soft Breadsticks</h1>
|
62
|
+
|
63
|
+
<div class="entry-meta">
|
64
|
+
<span class="meta-prep meta-prep-author">Posted on</span> <a href="https://recipes.payswarm.com/?p=10185" title="6:10 am" rel="bookmark"><span class="entry-date">April 14, 2011</span></a> <span class="meta-sep">by</span> <span class="author vcard"><a class="url fn n" href="https://recipes.payswarm.com/?author=2" title="View all posts by chef">chef</a></span> </div><!-- .entry-meta -->
|
65
|
+
|
66
|
+
<div class="entry-content">
|
67
|
+
<p><strong>Yield:</strong> 24 servings</p>
|
68
|
+
<h3>Ingredients</h3>
|
69
|
+
<ul>
|
70
|
+
<li>1 pk Regular or quick-acting-Active dry yeast</li>
|
71
|
+
<li>1 c Warm water (105 to115 degree</li>
|
72
|
+
<li>1 tb Sugar</li>
|
73
|
+
<li>1 ts Salt</li>
|
74
|
+
<li>3 1/4 c All-purpose flour*</li>
|
75
|
+
<li>2 ts Dried rosemary-Leaves, crushed</li>
|
76
|
+
<li>1 ts Dried oregano leaves</li>
|
77
|
+
<li>2 tb Vegetable oilCornmeal</li>
|
78
|
+
<li>1 Egg white</li>
|
79
|
+
<li>2 tb Cold waterPoppy seed or sesame seed,-If desired.</li>
|
80
|
+
</ul>
|
81
|
+
<div class="purchase section"><div class="money row">
|
82
|
+
<div xmlns:com="http://purl.org/commerce#"
|
83
|
+
xmlns:dc="http://purl.org/dc/terms/"
|
84
|
+
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
85
|
+
xmlns:gr="http://purl.org/goodrelations/v1#"
|
86
|
+
xmlns:ps="http://purl.org/payswarm#"
|
87
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
88
|
+
xmlns:sig="http://purl.org/signature#"
|
89
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
|
90
|
+
about="http://recipes.payswarm.com/?p=10185#asset" typeof="ps:Asset ps:WebPage"
|
91
|
+
class="asset-info">
|
92
|
+
<div about="http://recipes.payswarm.com/?p=10185#listing" typeof="ps:Listing gr:Offering">
|
93
|
+
<form action="https://recipes.payswarm.com/wp-content/plugins/payswarm/payswarm-access.php?p=10185" method="post">
|
94
|
+
<button class="purchase-button">
|
95
|
+
<img alt="Access" src="https://recipes.payswarm.com/wp-content/plugins/payswarm/images/payswarm-20.png" />Access</button>
|
96
|
+
|
97
|
+
<span rel="ps:asset" resource="http://recipes.payswarm.com/?p=10185#asset">View the full article for</span>
|
98
|
+
<span rel="com:payee" resource="http://recipes.payswarm.com/?p=10185#listing-payee">
|
99
|
+
<span property="com:currency" content="USD">$</span>
|
100
|
+
<abbr property="com:rate" title="0.04597" content="0.04597">0.05</abbr>
|
101
|
+
</span>
|
102
|
+
<span class="view-more"
|
103
|
+
onclick="javascript:toggleAssetInformation(10185);">View offer details</span>
|
104
|
+
</form>
|
105
|
+
</div>
|
106
|
+
<div id="payswarm-asset-info-10185" class="hidden">
|
107
|
+
<a rel="ps:contentUrl" href="http://recipes.payswarm.com/?p=10185"
|
108
|
+
property="dc:title">Soft Breadsticks</a> by
|
109
|
+
<span rel="dc:creator">
|
110
|
+
<span property="foaf:name">chef</span>
|
111
|
+
</span>.
|
112
|
+
Offered by
|
113
|
+
<a rel="ps:assetProvider" href="https://dev.payswarm.com:19100/i/devuser">us</a>
|
114
|
+
via our
|
115
|
+
<a rel="ps:authority"
|
116
|
+
href="https://payswarm.dev:19100/client-config">PaySwarm provider</a>.
|
117
|
+
<span about="http://recipes.payswarm.com/?p=10185#listing">The offer to get access to this
|
118
|
+
<span property="ps:assetHash" content="025b9b9f1eea31a9431f0c181a22df8a8257fc49">post</span>
|
119
|
+
under
|
120
|
+
<a rel="ps:license" href="http://purl.org/payswarm/licenses/blogging"
|
121
|
+
property="ps:licenseHash" content="b94ba441c42432e82b6e3a076f4c614f83cac6ef"
|
122
|
+
>this license</a>
|
123
|
+
is valid from
|
124
|
+
<abbr property="ps:validFrom"
|
125
|
+
title="2011-04-18T00:00:00+0000"
|
126
|
+
content="2011-04-18T00:00:00+0000"
|
127
|
+
datatype="xsd:dateTime">today</abbr>
|
128
|
+
until
|
129
|
+
<abbr property="ps:validUntil"
|
130
|
+
title="2011-04-19T00:00:00+0000"
|
131
|
+
content="2011-04-19T00:00:00+0000"
|
132
|
+
datatype="xsd:dateTime">tomorrow</abbr>.
|
133
|
+
</span>
|
134
|
+
<span rel="sig:signature">
|
135
|
+
<span typeof="sig:JsonldSignature">
|
136
|
+
This <a href="http://recipes.payswarm.com/?p=10185#asset">asset</a>
|
137
|
+
was <abbr property="sig:signatureValue"
|
138
|
+
content="GYQHOxTJeyfky4NkxTm/IEcVGKYq7omDXPwdX+CYlJD9ur6RX35jM/RS3SeB7teGlJs1KtAx+l4ZUsAZa4sINYkr9fKh0k0K7TCbXp2X5sJ4ZCE3AvxZfc4IQEMuiiq+C8LHJv6g6tVmdl25UIbfroEBd/Hv+ID995VgapsSmQo=" title="GYQHOxTJeyfky4NkxTm/IEcVGKYq7omDXPwdX+CYlJD9ur6RX35jM/RS3SeB7teGlJs1KtAx+l4ZUsAZa4sINYkr9fKh0k0K7TCbXp2X5sJ4ZCE3AvxZfc4IQEMuiiq+C8LHJv6g6tVmdl25UIbfroEBd/Hv+ID995VgapsSmQo=">digitally signed</abbr>
|
139
|
+
using <a rel="dc:creator" href="https://payswarm.com/i/devuser/keys/4">this key</a>
|
140
|
+
at <span property="dc:created" datatype="xsd:dateTime">2011-04-18T00:00:00Z</span>.
|
141
|
+
</span>
|
142
|
+
</span>
|
143
|
+
<span about="http://recipes.payswarm.com/?p=10185#listing">
|
144
|
+
<span rel="com:payeeRule">
|
145
|
+
<span typeof="com:PayeeRule">
|
146
|
+
<span rel="com:destinationOwnerType" resource="http://purl.org/payswarm#Authority"></span>
|
147
|
+
<span rel="com:rateType" resource="http://purl.org/commerce#Percentage"></span>
|
148
|
+
<span rel="com:rateContext" resource="http://purl.org/commerce#Inclusive"></span>
|
149
|
+
<span rel="com:rateContext" resource="http://purl.org/commerce#Tax"></span>
|
150
|
+
<span rel="com:rateContext" resource="http://purl.org/commerce#TaxExempt"></span>
|
151
|
+
<span property="com:maximumRate" content="11.45"></span>
|
152
|
+
</span>
|
153
|
+
</span>
|
154
|
+
<span rel="sig:signature">
|
155
|
+
<span typeof="sig:JsonldSignature">
|
156
|
+
This <a href="http://recipes.payswarm.com/?p=10185#listing">listing</a> was
|
157
|
+
<abbr property="sig:signatureValue"
|
158
|
+
content="MqF1r37JSev+2uUKdr1ZOWVfNbTx8YdBZUMW4hlgeQyIiYxfbHF+eYhU+NLFrclTjj3i7qnwREIIBP0O0BFk72JIBl3JcCDKpfbA7pqiFuaGvxr9+Ba7o0pYojo0A6Mc/+0UD5rjdJc+qAH9hnMOzKpjyeMxUcR1Z6w0XXKXc8A=" title="MqF1r37JSev+2uUKdr1ZOWVfNbTx8YdBZUMW4hlgeQyIiYxfbHF+eYhU+NLFrclTjj3i7qnwREIIBP0O0BFk72JIBl3JcCDKpfbA7pqiFuaGvxr9+Ba7o0pYojo0A6Mc/+0UD5rjdJc+qAH9hnMOzKpjyeMxUcR1Z6w0XXKXc8A=">digitally signed</abbr>
|
159
|
+
using <a rel="dc:creator" href="https://payswarm.com/i/devuser/keys/4">this key</a>
|
160
|
+
at <span property="dc:created" datatype="xsd:dateTime">2011-04-18T00:00:00Z</span>.
|
161
|
+
</span>
|
162
|
+
</span>
|
163
|
+
</span>
|
164
|
+
<span about="http://recipes.payswarm.com/?p=10185#listing-payee" typeof="com:Payee">
|
165
|
+
<span property="com:payeePosition" datatype="xsd:integer" content="0"></span>
|
166
|
+
<a rel="com:rateType" href="http://purl.org/commerce#FlatAmount"
|
167
|
+
>Flat-rate payment</a>
|
168
|
+
will be deposited into
|
169
|
+
<a rel="com:destination"
|
170
|
+
href="https://dev.payswarm.com:19100/i/devuser/accounts/primary">this account</a>.
|
171
|
+
The memo field for the payment will read:
|
172
|
+
"<span property="rdfs:comment">Payment for Soft Breadsticks by chef.</span>"
|
173
|
+
</span>
|
174
|
+
</div>
|
175
|
+
</div></div></div> </div><!-- .entry-content -->
|
176
|
+
|
177
|
+
|
178
|
+
<div class="entry-utility">
|
179
|
+
This entry was posted in <a href="https://recipes.payswarm.com/?category_name=french" title="View all posts in French" rel="category">French</a>, <a href="https://recipes.payswarm.com/?category_name=rice-grains" title="View all posts in Rice/grains" rel="category">Rice/grains</a>. Bookmark the <a href="https://recipes.payswarm.com/?p=10185" title="Permalink to Soft Breadsticks" rel="bookmark">permalink</a>. </div><!-- .entry-utility -->
|
180
|
+
</div><!-- #post-## -->
|
181
|
+
|
182
|
+
<div id="nav-below" class="navigation">
|
183
|
+
<div class="nav-previous"><a href="https://recipes.payswarm.com/?p=10184" rel="prev"><span class="meta-nav">←</span> Snappy Stuffed Tomatillos</a></div>
|
184
|
+
<div class="nav-next"><a href="https://recipes.payswarm.com/?p=10186" rel="next">Sorbet and Berry Salad <span class="meta-nav">→</span></a></div>
|
185
|
+
</div><!-- #nav-below -->
|
186
|
+
|
187
|
+
|
188
|
+
<div id="comments">
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
<div id="respond">
|
194
|
+
<h3 id="reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/?p=10185#respond" style="display:none;">Cancel reply</a></small></h3>
|
195
|
+
<form action="https://recipes.payswarm.com/wp-comments-post.php" method="post" id="commentform">
|
196
|
+
<p class="comment-notes">Your email address will not be published. Required fields are marked <span class="required">*</span></p> <p class="comment-form-author"><label for="author">Name</label> <span class="required">*</span><input id="author" name="author" type="text" value="" size="30" aria-required='true' /></p>
|
197
|
+
<p class="comment-form-email"><label for="email">Email</label> <span class="required">*</span><input id="email" name="email" type="text" value="" size="30" aria-required='true' /></p>
|
198
|
+
<p class="comment-form-url"><label for="url">Website</label><input id="url" name="url" type="text" value="" size="30" /></p>
|
199
|
+
<p class="comment-form-comment"><label for="comment">Comment</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p> <p class="form-allowed-tags">You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <code><a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> </code></p> <p class="form-submit">
|
200
|
+
<input name="submit" type="submit" id="submit" value="Post Comment" />
|
201
|
+
<input type='hidden' name='comment_post_ID' value='10185' id='comment_post_ID' />
|
202
|
+
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
|
203
|
+
</p>
|
204
|
+
</form>
|
205
|
+
</div><!-- #respond -->
|
206
|
+
|
207
|
+
</div><!-- #comments -->
|
208
|
+
|
209
|
+
|
210
|
+
</div><!-- #content -->
|
211
|
+
</div><!-- #container -->
|
212
|
+
|
213
|
+
|
214
|
+
<div id="primary" class="widget-area" role="complementary">
|
215
|
+
<ul class="xoxo">
|
216
|
+
|
217
|
+
<li id="search-2" class="widget-container widget_search"><form role="search" method="get" id="searchform" action="https://recipes.payswarm.com/" >
|
218
|
+
<div><label class="screen-reader-text" for="s">Search for:</label>
|
219
|
+
<input type="text" value="" name="s" id="s" />
|
220
|
+
<input type="submit" id="searchsubmit" value="Search" />
|
221
|
+
</div>
|
222
|
+
</form></li> <li id="recent-posts-2" class="widget-container widget_recent_entries"> <h3 class="widget-title">Recent Posts</h3> <ul>
|
223
|
+
<li><a href="https://recipes.payswarm.com/?p=10660" title="Chicken-And-Vegetable Soup">Chicken-And-Vegetable Soup</a></li>
|
224
|
+
<li><a href="https://recipes.payswarm.com/?p=10659" title="Chicken Soup #2">Chicken Soup #2</a></li>
|
225
|
+
<li><a href="https://recipes.payswarm.com/?p=10658" title="Chicken Soup #1">Chicken Soup #1</a></li>
|
226
|
+
<li><a href="https://recipes.payswarm.com/?p=10657" title="Chicken Foot Soup">Chicken Foot Soup</a></li>
|
227
|
+
<li><a href="https://recipes.payswarm.com/?p=10656" title="Chicken and Andouille Gumbo">Chicken and Andouille Gumbo</a></li>
|
228
|
+
</ul>
|
229
|
+
</li><li id="recent-comments-2" class="widget-container widget_recent_comments"><h3 class="widget-title">Recent Comments</h3><ul id="recentcomments"></ul></li><li id="archives-2" class="widget-container widget_archive"><h3 class="widget-title">Archives</h3> <ul>
|
230
|
+
<li><a href='https://recipes.payswarm.com/?m=201104' title='April 2011'>April 2011</a></li>
|
231
|
+
</ul>
|
232
|
+
</li><li id="categories-2" class="widget-container widget_categories"><h3 class="widget-title">Categories</h3> <ul>
|
233
|
+
<li class="cat-item cat-item-46"><a href="https://recipes.payswarm.com/?category_name=african" title="African">African</a>
|
234
|
+
</li>
|
235
|
+
<li class="cat-item cat-item-27"><a href="https://recipes.payswarm.com/?category_name=appetizers" title="Appetizers">Appetizers</a>
|
236
|
+
</li>
|
237
|
+
<li class="cat-item cat-item-70"><a href="https://recipes.payswarm.com/?category_name=australian" title="Australian">Australian</a>
|
238
|
+
</li>
|
239
|
+
<li class="cat-item cat-item-35"><a href="https://recipes.payswarm.com/?category_name=beans" title="Beans">Beans</a>
|
240
|
+
</li>
|
241
|
+
<li class="cat-item cat-item-25"><a href="https://recipes.payswarm.com/?category_name=beef" title="Beef">Beef</a>
|
242
|
+
</li>
|
243
|
+
<li class="cat-item cat-item-29"><a href="https://recipes.payswarm.com/?category_name=beverages" title="Beverages">Beverages</a>
|
244
|
+
</li>
|
245
|
+
<li class="cat-item cat-item-14"><a href="https://recipes.payswarm.com/?category_name=breads" title="Breads">Breads</a>
|
246
|
+
</li>
|
247
|
+
<li class="cat-item cat-item-37"><a href="https://recipes.payswarm.com/?category_name=breakfast" title="Breakfast">Breakfast</a>
|
248
|
+
</li>
|
249
|
+
<li class="cat-item cat-item-72"><a href="https://recipes.payswarm.com/?category_name=cajun" title="Cajun">Cajun</a>
|
250
|
+
</li>
|
251
|
+
<li class="cat-item cat-item-39"><a href="https://recipes.payswarm.com/?category_name=cakes" title="Cakes">Cakes</a>
|
252
|
+
</li>
|
253
|
+
<li class="cat-item cat-item-28"><a href="https://recipes.payswarm.com/?category_name=cakes-choc" title="Cakes/choc.">Cakes/choc.</a>
|
254
|
+
</li>
|
255
|
+
<li class="cat-item cat-item-10"><a href="https://recipes.payswarm.com/?category_name=canadian" title="Canadian">Canadian</a>
|
256
|
+
</li>
|
257
|
+
<li class="cat-item cat-item-18"><a href="https://recipes.payswarm.com/?category_name=candies" title="Candies">Candies</a>
|
258
|
+
</li>
|
259
|
+
<li class="cat-item cat-item-5"><a href="https://recipes.payswarm.com/?category_name=casseroles" title="Casseroles">Casseroles</a>
|
260
|
+
</li>
|
261
|
+
<li class="cat-item cat-item-13"><a href="https://recipes.payswarm.com/?category_name=cheese-eggs" title="Cheese/eggs">Cheese/eggs</a>
|
262
|
+
</li>
|
263
|
+
<li class="cat-item cat-item-58"><a href="https://recipes.payswarm.com/?category_name=cheesecakes" title="Cheesecakes">Cheesecakes</a>
|
264
|
+
</li>
|
265
|
+
<li class="cat-item cat-item-54"><a href="https://recipes.payswarm.com/?category_name=chili" title="Chili">Chili</a>
|
266
|
+
</li>
|
267
|
+
<li class="cat-item cat-item-40"><a href="https://recipes.payswarm.com/?category_name=chinese" title="Chinese">Chinese</a>
|
268
|
+
</li>
|
269
|
+
<li class="cat-item cat-item-8"><a href="https://recipes.payswarm.com/?category_name=chocolate" title="Chocolate">Chocolate</a>
|
270
|
+
</li>
|
271
|
+
<li class="cat-item cat-item-80"><a href="https://recipes.payswarm.com/?category_name=chorizo" title="Chorizo">Chorizo</a>
|
272
|
+
</li>
|
273
|
+
<li class="cat-item cat-item-15"><a href="https://recipes.payswarm.com/?category_name=condiment" title="Condiment">Condiment</a>
|
274
|
+
</li>
|
275
|
+
<li class="cat-item cat-item-17"><a href="https://recipes.payswarm.com/?category_name=cookies" title="Cookies">Cookies</a>
|
276
|
+
</li>
|
277
|
+
<li class="cat-item cat-item-21"><a href="https://recipes.payswarm.com/?category_name=desserts" title="Desserts">Desserts</a>
|
278
|
+
</li>
|
279
|
+
<li class="cat-item cat-item-11"><a href="https://recipes.payswarm.com/?category_name=diabetic" title="Diabetic">Diabetic</a>
|
280
|
+
</li>
|
281
|
+
<li class="cat-item cat-item-91"><a href="https://recipes.payswarm.com/?category_name=dips" title="Dips">Dips</a>
|
282
|
+
</li>
|
283
|
+
<li class="cat-item cat-item-83"><a href="https://recipes.payswarm.com/?category_name=dressings" title="Dressings">Dressings</a>
|
284
|
+
</li>
|
285
|
+
<li class="cat-item cat-item-9"><a href="https://recipes.payswarm.com/?category_name=ethnic" title="Ethnic">Ethnic</a>
|
286
|
+
</li>
|
287
|
+
<li class="cat-item cat-item-77"><a href="https://recipes.payswarm.com/?category_name=fish-sea" title="Fish/sea">Fish/sea</a>
|
288
|
+
</li>
|
289
|
+
<li class="cat-item cat-item-7"><a href="https://recipes.payswarm.com/?category_name=french" title="French">French</a>
|
290
|
+
</li>
|
291
|
+
<li class="cat-item cat-item-36"><a href="https://recipes.payswarm.com/?category_name=fruits" title="Fruits">Fruits</a>
|
292
|
+
</li>
|
293
|
+
<li class="cat-item cat-item-52"><a href="https://recipes.payswarm.com/?category_name=garlic" title="Garlic">Garlic</a>
|
294
|
+
</li>
|
295
|
+
<li class="cat-item cat-item-60"><a href="https://recipes.payswarm.com/?category_name=german" title="German">German</a>
|
296
|
+
</li>
|
297
|
+
<li class="cat-item cat-item-34"><a href="https://recipes.payswarm.com/?category_name=greek" title="Greek">Greek</a>
|
298
|
+
</li>
|
299
|
+
<li class="cat-item cat-item-1"><a href="https://recipes.payswarm.com/?category_name=ground-beef" title="Ground beef">Ground beef</a>
|
300
|
+
</li>
|
301
|
+
<li class="cat-item cat-item-69"><a href="https://recipes.payswarm.com/?category_name=hot" title="Hot">Hot</a>
|
302
|
+
</li>
|
303
|
+
<li class="cat-item cat-item-49"><a href="https://recipes.payswarm.com/?category_name=hungarian" title="Hungarian">Hungarian</a>
|
304
|
+
</li>
|
305
|
+
<li class="cat-item cat-item-64"><a href="https://recipes.payswarm.com/?category_name=ice-cream" title="Ice cream">Ice cream</a>
|
306
|
+
</li>
|
307
|
+
<li class="cat-item cat-item-19"><a href="https://recipes.payswarm.com/?category_name=india" title="India">India</a>
|
308
|
+
</li>
|
309
|
+
<li class="cat-item cat-item-65"><a href="https://recipes.payswarm.com/?category_name=information" title="Information">Information</a>
|
310
|
+
</li>
|
311
|
+
<li class="cat-item cat-item-59"><a href="https://recipes.payswarm.com/?category_name=irish" title="Irish">Irish</a>
|
312
|
+
</li>
|
313
|
+
<li class="cat-item cat-item-16"><a href="https://recipes.payswarm.com/?category_name=italian" title="Italian">Italian</a>
|
314
|
+
</li>
|
315
|
+
<li class="cat-item cat-item-84"><a href="https://recipes.payswarm.com/?category_name=japanese" title="Japanese">Japanese</a>
|
316
|
+
</li>
|
317
|
+
<li class="cat-item cat-item-74"><a href="https://recipes.payswarm.com/?category_name=jewish" title="Jewish">Jewish</a>
|
318
|
+
</li>
|
319
|
+
<li class="cat-item cat-item-47"><a href="https://recipes.payswarm.com/?category_name=korean" title="Korean">Korean</a>
|
320
|
+
</li>
|
321
|
+
<li class="cat-item cat-item-44"><a href="https://recipes.payswarm.com/?category_name=lamb" title="Lamb">Lamb</a>
|
322
|
+
</li>
|
323
|
+
<li class="cat-item cat-item-33"><a href="https://recipes.payswarm.com/?category_name=linguica" title="Linguica">Linguica</a>
|
324
|
+
</li>
|
325
|
+
<li class="cat-item cat-item-57"><a href="https://recipes.payswarm.com/?category_name=londontowne" title="Londontowne">Londontowne</a>
|
326
|
+
</li>
|
327
|
+
<li class="cat-item cat-item-51"><a href="https://recipes.payswarm.com/?category_name=low-cal" title="Low-cal">Low-cal</a>
|
328
|
+
</li>
|
329
|
+
<li class="cat-item cat-item-41"><a href="https://recipes.payswarm.com/?category_name=marinade" title="Marinade">Marinade</a>
|
330
|
+
</li>
|
331
|
+
<li class="cat-item cat-item-42"><a href="https://recipes.payswarm.com/?category_name=meatloaf" title="Meatloaf">Meatloaf</a>
|
332
|
+
</li>
|
333
|
+
<li class="cat-item cat-item-86"><a href="https://recipes.payswarm.com/?category_name=meats" title="Meats">Meats</a>
|
334
|
+
</li>
|
335
|
+
<li class="cat-item cat-item-82"><a href="https://recipes.payswarm.com/?category_name=mexican" title="Mexican">Mexican</a>
|
336
|
+
</li>
|
337
|
+
<li class="cat-item cat-item-67"><a href="https://recipes.payswarm.com/?category_name=microwave" title="Microwave">Microwave</a>
|
338
|
+
</li>
|
339
|
+
<li class="cat-item cat-item-62"><a href="https://recipes.payswarm.com/?category_name=mideast" title="Mideast">Mideast</a>
|
340
|
+
</li>
|
341
|
+
<li class="cat-item cat-item-3"><a href="https://recipes.payswarm.com/?category_name=misc" title="Misc.">Misc.</a>
|
342
|
+
</li>
|
343
|
+
<li class="cat-item cat-item-68"><a href="https://recipes.payswarm.com/?category_name=mix" title="Mix">Mix</a>
|
344
|
+
</li>
|
345
|
+
<li class="cat-item cat-item-20"><a href="https://recipes.payswarm.com/?category_name=moroccan" title="Moroccan">Moroccan</a>
|
346
|
+
</li>
|
347
|
+
<li class="cat-item cat-item-73"><a href="https://recipes.payswarm.com/?category_name=muffins" title="Muffins">Muffins</a>
|
348
|
+
</li>
|
349
|
+
<li class="cat-item cat-item-63"><a href="https://recipes.payswarm.com/?category_name=new-zealand" title="New zealand">New zealand</a>
|
350
|
+
</li>
|
351
|
+
<li class="cat-item cat-item-4"><a href="https://recipes.payswarm.com/?category_name=oriental" title="Oriental">Oriental</a>
|
352
|
+
</li>
|
353
|
+
<li class="cat-item cat-item-50"><a href="https://recipes.payswarm.com/?category_name=pancakes" title="Pancakes">Pancakes</a>
|
354
|
+
</li>
|
355
|
+
<li class="cat-item cat-item-76"><a href="https://recipes.payswarm.com/?category_name=pasta" title="Pasta">Pasta</a>
|
356
|
+
</li>
|
357
|
+
<li class="cat-item cat-item-88"><a href="https://recipes.payswarm.com/?category_name=penndutch" title="Penndutch">Penndutch</a>
|
358
|
+
</li>
|
359
|
+
<li class="cat-item cat-item-23"><a href="https://recipes.payswarm.com/?category_name=pickles" title="Pickles">Pickles</a>
|
360
|
+
</li>
|
361
|
+
<li class="cat-item cat-item-32"><a href="https://recipes.payswarm.com/?category_name=pies" title="Pies">Pies</a>
|
362
|
+
</li>
|
363
|
+
<li class="cat-item cat-item-38"><a href="https://recipes.payswarm.com/?category_name=pilaf" title="Pilaf">Pilaf</a>
|
364
|
+
</li>
|
365
|
+
<li class="cat-item cat-item-71"><a href="https://recipes.payswarm.com/?category_name=pizza" title="Pizza">Pizza</a>
|
366
|
+
</li>
|
367
|
+
<li class="cat-item cat-item-22"><a href="https://recipes.payswarm.com/?category_name=polish" title="Polish">Polish</a>
|
368
|
+
</li>
|
369
|
+
<li class="cat-item cat-item-85"><a href="https://recipes.payswarm.com/?category_name=pork-ham" title="Pork/ham">Pork/ham</a>
|
370
|
+
</li>
|
371
|
+
<li class="cat-item cat-item-81"><a href="https://recipes.payswarm.com/?category_name=portuguese" title="Portuguese">Portuguese</a>
|
372
|
+
</li>
|
373
|
+
<li class="cat-item cat-item-78"><a href="https://recipes.payswarm.com/?category_name=poultry" title="Poultry">Poultry</a>
|
374
|
+
</li>
|
375
|
+
<li class="cat-item cat-item-48"><a href="https://recipes.payswarm.com/?category_name=preserve" title="Preserve">Preserve</a>
|
376
|
+
</li>
|
377
|
+
<li class="cat-item cat-item-79"><a href="https://recipes.payswarm.com/?category_name=relishes" title="Relishes">Relishes</a>
|
378
|
+
</li>
|
379
|
+
<li class="cat-item cat-item-2"><a href="https://recipes.payswarm.com/?category_name=rice-grains" title="Rice/grains">Rice/grains</a>
|
380
|
+
</li>
|
381
|
+
<li class="cat-item cat-item-53"><a href="https://recipes.payswarm.com/?category_name=russian" title="Russian">Russian</a>
|
382
|
+
</li>
|
383
|
+
<li class="cat-item cat-item-90"><a href="https://recipes.payswarm.com/?category_name=salads" title="Salads">Salads</a>
|
384
|
+
</li>
|
385
|
+
<li class="cat-item cat-item-30"><a href="https://recipes.payswarm.com/?category_name=salsa" title="Salsa">Salsa</a>
|
386
|
+
</li>
|
387
|
+
<li class="cat-item cat-item-92"><a href="https://recipes.payswarm.com/?category_name=sauces" title="Sauces">Sauces</a>
|
388
|
+
</li>
|
389
|
+
<li class="cat-item cat-item-75"><a href="https://recipes.payswarm.com/?category_name=sausages" title="Sausages">Sausages</a>
|
390
|
+
</li>
|
391
|
+
<li class="cat-item cat-item-6"><a href="https://recipes.payswarm.com/?category_name=soups-stews" title="Soups/stews">Soups/stews</a>
|
392
|
+
</li>
|
393
|
+
<li class="cat-item cat-item-87"><a href="https://recipes.payswarm.com/?category_name=spanish" title="Spanish">Spanish</a>
|
394
|
+
</li>
|
395
|
+
<li class="cat-item cat-item-61"><a href="https://recipes.payswarm.com/?category_name=spices-etc" title="Spices/etc.">Spices/etc.</a>
|
396
|
+
</li>
|
397
|
+
<li class="cat-item cat-item-55"><a href="https://recipes.payswarm.com/?category_name=spreads" title="Spreads">Spreads</a>
|
398
|
+
</li>
|
399
|
+
<li class="cat-item cat-item-24"><a href="https://recipes.payswarm.com/?category_name=swedish" title="Swedish">Swedish</a>
|
400
|
+
</li>
|
401
|
+
<li class="cat-item cat-item-43"><a href="https://recipes.payswarm.com/?category_name=syrups" title="Syrups">Syrups</a>
|
402
|
+
</li>
|
403
|
+
<li class="cat-item cat-item-31"><a href="https://recipes.payswarm.com/?category_name=thai" title="Thai">Thai</a>
|
404
|
+
</li>
|
405
|
+
<li class="cat-item cat-item-89"><a href="https://recipes.payswarm.com/?category_name=toppings" title="Toppings">Toppings</a>
|
406
|
+
</li>
|
407
|
+
<li class="cat-item cat-item-45"><a href="https://recipes.payswarm.com/?category_name=turkish" title="Turkish">Turkish</a>
|
408
|
+
</li>
|
409
|
+
<li class="cat-item cat-item-12"><a href="https://recipes.payswarm.com/?category_name=veal" title="Veal">Veal</a>
|
410
|
+
</li>
|
411
|
+
<li class="cat-item cat-item-26"><a href="https://recipes.payswarm.com/?category_name=vegetables" title="Vegetables">Vegetables</a>
|
412
|
+
</li>
|
413
|
+
<li class="cat-item cat-item-56"><a href="https://recipes.payswarm.com/?category_name=vegetarian" title="Vegetarian">Vegetarian</a>
|
414
|
+
</li>
|
415
|
+
<li class="cat-item cat-item-66"><a href="https://recipes.payswarm.com/?category_name=vietnamese" title="Vietnamese">Vietnamese</a>
|
416
|
+
</li>
|
417
|
+
</ul>
|
418
|
+
</li><li id="meta-2" class="widget-container widget_meta"><h3 class="widget-title">Meta</h3> <ul>
|
419
|
+
<li><a href="https://recipes.payswarm.com/wp-login.php">Log in</a></li>
|
420
|
+
<li><a href="https://recipes.payswarm.com/?feed=rss2" title="Syndicate this site using RSS 2.0">Entries <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
421
|
+
<li><a href="https://recipes.payswarm.com/?feed=comments-rss2" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr></a></li>
|
422
|
+
<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress.org</a></li>
|
423
|
+
</ul>
|
424
|
+
</li> </ul>
|
425
|
+
</div><!-- #primary .widget-area -->
|
426
|
+
|
427
|
+
</div><!-- #main -->
|
428
|
+
|
429
|
+
<div id="footer" role="contentinfo">
|
430
|
+
<div id="colophon">
|
431
|
+
|
432
|
+
|
433
|
+
|
434
|
+
<div id="site-info">
|
435
|
+
<a href="https://recipes.payswarm.com/" title="PaySwarm Recipes Demo" rel="home">
|
436
|
+
PaySwarm Recipes Demo </a>
|
437
|
+
</div><!-- #site-info -->
|
438
|
+
|
439
|
+
<div id="site-generator">
|
440
|
+
<a href="http://wordpress.org/" title="Semantic Personal Publishing Platform" rel="generator">Proudly powered by WordPress.</a>
|
441
|
+
</div><!-- #site-generator -->
|
442
|
+
|
443
|
+
</div><!-- #colophon -->
|
444
|
+
</div><!-- #footer -->
|
445
|
+
|
446
|
+
</div><!-- #wrapper -->
|
447
|
+
|
448
|
+
</body>
|
449
|
+
</html>
|