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
Binary file removed docs/assets/020/ergo.png
Binary file not shown.
20 changes: 0 additions & 20 deletions website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,6 @@ const Features = props => (
content: `Create templates for human-readable and machine-executable contracts using Open Source [Cicero](${siteConfig.baseUrl}docs/started-installation.html).`,
title: `[![Cicero](${imgUrl('cicero-logo.svg')})](${siteConfig.baseUrl}docs/started-installation.html)`,
},
{
content: `Write executable business logic for legal contracts using the [Ergo](${siteConfig.baseUrl}docs/logic-ergo.html) domain-specific language.`,
title: `[![Ergo](${imgUrl('ergo-logo.svg')})](${siteConfig.baseUrl}docs/logic-ergo.html)`,
},
{
content: `Model the data for your contracts in a platform neutral format with the [Concerto](${siteConfig.baseUrl}docs/model-concerto.html) schema language.`,
title: `[Concerto](${siteConfig.baseUrl}docs/model-concerto.html)`,
Expand Down Expand Up @@ -184,21 +180,6 @@ const Model = props => (
</Block>
);

const Logic = props => (
<Block background="dark" id="logic">
{[
{
content:
'<div class="typeset">Ergo is a <em>strongly-typed</em> domain specific language designed to capture computational aspects of legal contracts and clauses. Use Ergo to create <strong>safe</strong> smart legal contract logic.</div>',
image: imgUrl("../docs/assets/020/ergo.png"),
imageAlt: "Example of an Ergo file",
imageAlign: "left",
title: "Logic"
}
]}
</Block>
);

const TryOut = props => (
<Block id="try">
{[
Expand Down Expand Up @@ -261,7 +242,6 @@ class Index extends React.Component {
<Templates />
<Grammar />
<Model />
<Logic />
<TryOut />
</div>
</div>
Expand Down
26 changes: 0 additions & 26 deletions website/static/img/ergo-logo.svg

This file was deleted.

Binary file removed website/static/img/ergo-vscode.png
Binary file not shown.
2 changes: 0 additions & 2 deletions website/versioned_docs/version-0.12/accordproject-tooling.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ This provides syntax highlighting, and error reporting when working on source Er

Install the Accord Project extension by visiting the [Visual Studio marketplace](https://marketplace.visualstudio.com/items?itemName=accordproject.accordproject-vscode-plugin).

![VSCode plugin](/img/ergo-vscode.png)

## Syntax highlighting

Languages modes, which provide syntax highlighting for Ergo, also exist for a couple of other editors.
Expand Down
2 changes: 1 addition & 1 deletion website/versioned_docs/version-0.12/accordproject.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ A DSL is a computer language that is targeted to a particular kind of problem, r

The following screenshot shows the Ergo logic for the acceptance of delivery clause.

![Ergo Logic](/img/ergo-vscode.png)


It is important that a developer and a lawyer can together agree that clauses in a computable legal contract have the same semantics as the equivalent computer code. For that reason, Ergo is intended to be accessible to Lawyers who create the corresponding prose for those computable legal contracts. As a programming language, the Ergo syntax also adheres to programming conventions.

Expand Down