From bdb28eaaf6e15cd8fdea20e7483837215700f066 Mon Sep 17 00:00:00 2001 From: iJungleboy Date: Wed, 27 Feb 2019 08:11:37 +0100 Subject: [PATCH] releasing 1.1 --- .data/app.xml | 127 +++++++++++++++++++++++++++++++++++++++++++++++- _home.cshtml | 2 +- _json-ld.cshtml | 4 +- readme.md | 2 +- 4 files changed, 129 insertions(+), 6 deletions(-) diff --git a/.data/app.xml b/.data/app.xml index 23ce1c0..db93cf6 100644 --- a/.data/app.xml +++ b/.data/app.xml @@ -1,5 +1,5 @@ - +
@@ -48,7 +48,7 @@ - + @@ -341,6 +341,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/_home.cshtml b/_home.cshtml index efe5903..1fe5802 100644 --- a/_home.cshtml +++ b/_home.cshtml @@ -1,5 +1,5 @@

- Razor Blade Demos + Razor Blade Demos for 1.0 and 1.1 @Edit.Toolbar(Content)

diff --git a/_json-ld.cshtml b/_json-ld.cshtml index ba524d4..a578512 100644 --- a/_json-ld.cshtml +++ b/_json-ld.cshtml @@ -12,12 +12,12 @@ HtmlPage.AddJsonLd("{ \"@context\": \"https://schema.org/\" }"); // creating a JSON-LD using an object - replicating googles example https://developers.google.com/search/docs/guides/intro-structured-data - var jsonLd = new JsonLdNode { + var jsonLd = new Dictionary { { "@context", "https://schema.org"}, { "@type", "Organization"}, { "url", "http://www.example.com"}, { "name", "Unlimited Ball Bearings Corp."}, - { "contactPoint", new JsonLdNode { + { "contactPoint", new Dictionary { {"@type", "ContactPoint"}, {"telephone", "+1-401-555-1212"}, {"contactType", "Customer service"} diff --git a/readme.md b/readme.md index 20550f3..9e373a7 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ -# Razor Blade Tutorial App +# Razor Blade Tutorial App for v1.1 This is a 2sxc app to quickly learn/discover what _[Razor Blade](https://github.com/DNN-Connect/razor-blade)_ can do for you and see the various syntax examples.