Error compiling template "/Designs/SvaneTvis2022/Paragraph/ParagraphContainer.cshtml"
Line 23: Type expected
Line 23: Syntax error, ',' expected
Line 23: Syntax error, ',' expected
Line 23: Syntax error, ',' expected
Line 23: The type or namespace name 'template' could not be found (are you missing a using directive or an assembly reference?)
1 //------------------------------------------------------------------------------
2 // <auto-generated>
3 // This code was generated by a tool.
4 // Runtime Version:4.0.30319.42000
5 //
6 // Changes to this file may cause incorrect behavior and will be lost if
7 // the code is regenerated.
8 // </auto-generated>
9 //------------------------------------------------------------------------------
10
11 namespace CompiledRazorTemplates.Dynamic {
12 using System;
13 using System.Collections.Generic;
14 using System.Linq;
15
16 #line 2 "D:\dynamicweb.net\Solutions\Campfire\svane.dk\Files\Templates\Designs\SvaneTvis2022\Paragraph\ParagraphContainer.cshtml"
17 using Dynamicweb.Rendering;
18
19 #line default
20 #line hidden
21
22
23 public class RazorEngine_4eb16d06cb8e4aa5b79ce36ded5b0ea4 : RazorTemplateBase< /><template>> {
24
25 #line hidden
26
27 public RazorEngine_4eb16d06cb8e4aa5b79ce36ded5b0ea4() {
28 }
29
30 public override void Execute() {
31
32 #line 3 "D:\dynamicweb.net\Solutions\Campfire\svane.dk\Files\Templates\Designs\SvaneTvis2022\Paragraph\ParagraphContainer.cshtml"
33
34 string AnchorID = "pid" + Pageview.CurrentParagraph.ID;
35
36
37 #line default
38 #line hidden
39 WriteLiteral("\r\n<section");
40
41 WriteAttribute("id", Tuple.Create(" id=\"", 149), Tuple.Create("\"", 163)
42
43 #line 6 "D:\dynamicweb.net\Solutions\Campfire\svane.dk\Files\Templates\Designs\SvaneTvis2022\Paragraph\ParagraphContainer.cshtml"
44 , Tuple.Create(Tuple.Create("", 154), Tuple.Create<System.Object, System.Int32>(AnchorID
45
46 #line default
47 #line hidden
48 , 154), false)
49 );
50
51 WriteLiteral(">\r\n\t<div");
52
53 WriteLiteral(" class=\"container\"");
54
55 WriteLiteral(">\r\n\t\t<div");
56
57 WriteLiteral(" class=\"row\"");
58
59 WriteLiteral(">\r\n\t\t\t<div");
60
61 WriteLiteral(" class=\"col-xs-12\"");
62
63 WriteLiteral(">\r\n");
64
65 WriteLiteral(" \t\t\t\t ");
66
67
68 #line 10 "D:\dynamicweb.net\Solutions\Campfire\svane.dk\Files\Templates\Designs\SvaneTvis2022\Paragraph\ParagraphContainer.cshtml"
69 Write(GetString("ParagraphText"));
70
71
72 #line default
73 #line hidden
74 WriteLiteral("\r\n </div>\r\n\t\t</div>\r\n\t</div>\r\n</section></template>");
75
76 }
77 }
78 }
79
1 @inherits RazorTemplateBase< /><template>>
2 @using Dynamicweb.Rendering
3 @{
4 string AnchorID = "pid" + Pageview.CurrentParagraph.ID;
5 }
6 <section id="@AnchorID">
7 <div class="container">
8 <div class="row">
9 <div class="col-xs-12">
10 @GetString("ParagraphText")
11 </div>
12 </div>
13 </div>
14 </section></template>