From 22b9698780b77c5f9de358410a627aa402f728b2 Mon Sep 17 00:00:00 2001 From: Vincent Prouillet Date: Sun, 20 Aug 2023 12:22:45 +0200 Subject: [PATCH] Change all URLs --- Cargo.toml | 2 +- README.md | 2 +- docs/README.md | 3 +-- docs/config.toml | 2 +- docs/package.json | 2 +- src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 879a02bbb..e7af595c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Vincent Prouillet "] license = "MIT" readme = "README.md" description = "Template engine based on Jinja2/Django templates" -homepage = "https://tera.netlify.com/" +homepage = "http://keats.github.io/tera/" repository = "https://github.com/Keats/tera" keywords = ["template", "html", "django", "markup", "jinja2"] categories = ["template-engine"] diff --git a/README.md b/README.md index d0fcbde3d..d614a0139 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ It does not aim to be 100% compatible with them but has many of the Jinja2/Djang ## Documentation API documentation is available on [docs.rs](https://docs.rs/crate/tera/). -Tera documentation is available on its [site](https://tera.netlify.app/docs). +Tera documentation is available on its [site](http://keats.github.io/tera/docs). ## SemVer This project follows SemVer only for the public API, public API here meaning functions appearing in the docs. diff --git a/docs/README.md b/docs/README.md index 1f9185142..1685b920c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,4 +1,3 @@ # Tera documentation -Uses [Zola](https://www.getzola.org/), see `netlify.toml` for -the exact version +Uses [Zola](https://www.getzola.org/) and deployed automatically on push to master. diff --git a/docs/config.toml b/docs/config.toml index 88cfe8112..cda4d719f 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -1,6 +1,6 @@ title = "Tera" description = "Tera - A template engine for Rust inspired by Jinja2 and Django templates" -base_url = "https://tera.netlify.app/" +base_url = "http://keats.github.io/tera/" compile_sass = true [markdown] diff --git a/docs/package.json b/docs/package.json index 3281a82e2..5d8a30c0c 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,7 +10,7 @@ }, "author": "Vincent Prouillet ", "license": "(MIT OR Apache-2.0)", - "homepage": "https://tera.netlify.app/", + "homepage": "http://keats.github.io/tera/", "dependencies": { "tera-web": "file:playground/pkg/" }, diff --git a/src/lib.rs b/src/lib.rs index 612a68fc9..151e530da 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! template inheritance, variable interpolation, conditionals, loops, filters, and custom //! functions, enabling developers to build complex applications with ease. //! -//! See the [site](https://tera.netlify.com) for more information and to get started. +//! See the [site](http://keats.github.io/tera/) for more information and to get started. //! //! ## Features //!