Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ The `OrchardCoreContrib.Modules` repository consists of the following modules:
| [YARP Module](src/OrchardCoreContrib.ReverseProxy.Yarp/README.md) | `OrchardCoreContrib.ReverseProxy.Yarp` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.ReverseProxy.Yarp.svg)](https://www.nuget.org/packages/OrchardCoreContrib.ReverseProxy.Yarp) |
| [Azure SMS Module](src/OrchardCoreContrib.Sms.Azure/README.md) | `OrchardCoreContrib.Sms.Azure` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.Sms.Azure.svg)](https://www.nuget.org/packages/OrchardCoreContrib.Sms.Azure) |
| [System Module](src/OrchardCoreContrib.System/README.md) | `OrchardCoreContrib.System` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.System.svg)](https://www.nuget.org/packages/OrchardCoreContrib.System) |
| [Templating Liquid Module](src/OrchardCoreContrib.Templating.Liquid/README.md) | `OrchardCoreContrib.Templating.Liquid` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.Templating.Liquid.svg)](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Liquid) |
| [Templating Razor Module](src/OrchardCoreContrib.Templating.Razor/README.md) | `OrchardCoreContrib.Templating.Razor` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.Templating.Razor.svg)](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Razor) |
| [Tenants Module](src/OrchardCoreContrib.Tenants/README.md) | `OrchardCoreContrib.Tenants` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.Tenants.svg)](https://www.nuget.org/packages/OrchardCoreContrib.Tenants) |
| [Users Module](src/OrchardCoreContrib.Users/README.md) | `OrchardCoreContrib.Users` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.Users.svg)](https://www.nuget.org/packages/OrchardCoreContrib.Users) |
| [Users Groups Module](src/OrchardCoreContrib.UserGroups/README.md) | `OrchardCoreContrib.UserGroups` | [![NuGet](https://img.shields.io/nuget/v/OrchardCoreContrib.UserGroups.svg)](https://www.nuget.org/packages/OrchardCoreContrib.UserGroups) |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>The Orchard Core Contrib Team</Authors>
<Company />
<Description>Provides Liquid template engine integration.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/tree/main/src/OrchardCoreContrib.Templating.Liquid/README.md</PackageProjectUrl>
<RepositoryUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>Orchard Core, Orchard Core Contrib, Templating</PackageTags>
<PackageReleaseNotes>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/releases</PackageReleaseNotes>
<PackageId>OrchardCoreContrib.Templating.Liquid</PackageId>
<PackageIcon>icon.png</PackageIcon>
<Product>Orchard Core Contrib Liquid Templating Module</Product>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Copyright>2019 Orchard Core Contrib</Copyright>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand All @@ -15,4 +35,9 @@
<ProjectReference Include="$(OrchardCoreContribPath)OrchardCoreContrib.Templating.Abstractions\OrchardCoreContrib.Templating.Abstractions.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="../../images/icon.png" Pack="true" PackagePath="icon.png" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>
37 changes: 37 additions & 0 deletions src/OrchardCoreContrib.Templating.Liquid/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Liquid Templating Module

This module provides integration with the Liquid template engine for Orchard Core.

## Version

1.0.0

## Category

Templating

## Dependencies

There's no dependencies.

## Features

| | |
|------------------|------------------------------------------------------------------------|
| **Name** | Liquid Templating (`OrchardCoreContrib.Templating.Liquid`) |
| **Description** | Provides integration with the Liquid template engine for Orchard Core. |
| **Dependencies** | |

## NuGet Packages

| Name | Version |
|-----------------------------------------------------------------------------------------------------------------------|---------|
| [`OrchardCoreContrib.Templating.Liquid`](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Liquid/1.0.0) | 1.0.0 |

## Get Started

1. Install the [`OrchardCoreContrib.Templating.Liquid`](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Liquid/) NuGet package to your Orchard Core host project.
2. Go to the admin site
3. Select **Configuration -> Features** menu.
4. Enable the `Liquid Templating` feature.
5. Now you can inject `ITemplateEngine` into your services and use it to render Liquid templates.
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>The Orchard Core Contrib Team</Authors>
<Company />
<Description>Provides Razor template engine integration.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/tree/main/src/OrchardCoreContrib.Templating.Razor/README.md</PackageProjectUrl>
<RepositoryUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>Orchard Core, Orchard Core Contrib, Templating</PackageTags>
<PackageReleaseNotes>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/releases</PackageReleaseNotes>
<PackageId>OrchardCoreContrib.Templating.Razor</PackageId>
<PackageIcon>icon.png</PackageIcon>
<Product>Orchard Core Contrib Razor Templating Module</Product>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Copyright>2019 Orchard Core Contrib</Copyright>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
Expand All @@ -15,4 +35,9 @@
<ProjectReference Include="$(OrchardCoreContribPath)OrchardCoreContrib.Templating.Abstractions\OrchardCoreContrib.Templating.Abstractions.csproj" />
</ItemGroup>

<ItemGroup>
<None Include="../../images/icon.png" Pack="true" PackagePath="icon.png" />
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>
37 changes: 37 additions & 0 deletions src/OrchardCoreContrib.Templating.Razor/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Razor Templating Module

This module provides integration with the Razor template engine for Orchard Core.

## Version

1.0.0

## Category

Templating

## Dependencies

There's no dependencies.

## Features

| | |
|------------------|------------------------------------------------------------------------|
| **Name** | Razor Templating (`OrchardCoreContrib.Templating.Razor`) |
| **Description** | Provides integration with the Razor template engine for Orchard Core. |
| **Dependencies** | |

## NuGet Packages

| Name | Version |
|-----------------------------------------------------------------------------------------------------------------------|---------|
| [`OrchardCoreContrib.Templating.Razor`](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Razor/1.0.0) | 1.0.0 |

## Get Started

1. Install the [`OrchardCoreContrib.Templating.Razor`](https://www.nuget.org/packages/OrchardCoreContrib.Templating.Razor/) NuGet package to your Orchard Core host project.
2. Go to the admin site
3. Select **Configuration -> Features** menu.
4. Enable the `Razor Templating` feature.
5. Now you can inject `ITemplateEngine` into your services and use it to render Razor templates.
Loading