1
0
mirror of https://github.com/actix/examples synced 2025-06-28 09:50:36 +02:00

delete db/r2d2 example

This commit is contained in:
Rob Ede
2022-02-06 08:25:38 +00:00
parent a4d43c0ff8
commit da60a30fd9
22 changed files with 29 additions and 123 deletions

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Welcome!</h1>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Hi, {{ name }}!</h1>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Welcome!</h1>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Hi, {{ name }}!</h1>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Welcome!</h1>

View File

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8" />
<title>Actix web</title>
<title>Actix Web</title>
</head>
<body>
<h1>Hi, {name}!</h1>

View File

@ -1,4 +1,4 @@
{{#> base title = "Actix web" }}
{{#> base title = "Actix Web" }}
{{~#if let Some(name) = query.get("name") }}
{{ let lastname = query.get("lastname").ok_or(MyErr("Bad query"))? }}
{{> card/hi ~}}