📝 Doc tweaks

This commit is contained in:
Manuel Cillero 2023-07-19 14:55:04 +02:00
parent c123c3a780
commit df2d15a839
3 changed files with 4 additions and 5 deletions

View file

@ -7,9 +7,8 @@ authors = [
"Manuel Cillero <manuel@cillero.es>" "Manuel Cillero <manuel@cillero.es>"
] ]
description = """\ description = """\
PageTop is an opinionated web development framework that uses some of the most stable and \ PageTop is an opinionated Rust web development framework to build secure and modular \
popular Rust packages to build modular, extensible and configurable Server-Side Rendering \ Server-Side Rendering (SSR) web solutions.
(SSR) solutions.
""" """
homepage = "https://pagetop.cillero.es" homepage = "https://pagetop.cillero.es"
repository = "https://github.com/manuelcillero/pagetop" repository = "https://github.com/manuelcillero/pagetop"

View file

@ -1,5 +1,5 @@
**PageTop** is an opinionated [Rust](https://www.rust-lang.org) web development framework to build **PageTop** is an opinionated [Rust](https://www.rust-lang.org) web development framework to build
secure, modular, and fast web Server-Side Rendering (SSR) solutions with ease. secure and modular Server-Side Rendering (SSR) web solutions.
PageTop uses some of the most stable and popular Rust *crates* to provide modular, extensible, and PageTop uses some of the most stable and popular Rust *crates* to provide modular, extensible, and
configurable features. configurable features.

View file

@ -50,7 +50,7 @@ pub trait ThemeTrait: ModuleTrait + Send + Sync {
meta charset="utf-8"; meta charset="utf-8";
@if !title.is_empty() { @if !title.is_empty() {
title { (config::SETTINGS.app.name) (" | ") (title) } title { (config::SETTINGS.app.name) (" - ") (title) }
} @else { } @else {
title { (config::SETTINGS.app.name) } title { (config::SETTINGS.app.name) }
} }