mirror of
https://github.com/redlib-org/redlib.git
synced 2025-05-14 05:52:53 +00:00
Support post links without titles
This commit is contained in:
parent
008924fff8
commit
e731cfbac4
2 changed files with 3 additions and 1 deletions
|
@ -160,6 +160,7 @@ async fn main() -> tide::Result<()> {
|
||||||
app.at("/u/:name/comments/:id/:title/:comment/").get(post::item);
|
app.at("/u/:name/comments/:id/:title/:comment/").get(post::item);
|
||||||
|
|
||||||
app.at("/user/:name/").get(user::profile);
|
app.at("/user/:name/").get(user::profile);
|
||||||
|
app.at("/user/:name/comments/:id/").get(post::item);
|
||||||
app.at("/user/:name/comments/:id/:title/").get(post::item);
|
app.at("/user/:name/comments/:id/:title/").get(post::item);
|
||||||
app.at("/user/:name/comments/:id/:title/:comment/").get(post::item);
|
app.at("/user/:name/comments/:id/:title/:comment/").get(post::item);
|
||||||
|
|
||||||
|
@ -173,6 +174,7 @@ async fn main() -> tide::Result<()> {
|
||||||
app.at("/r/:sub/subscribe/").post(subreddit::subscriptions);
|
app.at("/r/:sub/subscribe/").post(subreddit::subscriptions);
|
||||||
app.at("/r/:sub/unsubscribe/").post(subreddit::subscriptions);
|
app.at("/r/:sub/unsubscribe/").post(subreddit::subscriptions);
|
||||||
// View post on subreddit
|
// View post on subreddit
|
||||||
|
app.at("/r/:sub/comments/:id/").get(post::item);
|
||||||
app.at("/r/:sub/comments/:id/:title/").get(post::item);
|
app.at("/r/:sub/comments/:id/:title/").get(post::item);
|
||||||
app.at("/r/:sub/comments/:id/:title/:comment_id/").get(post::item);
|
app.at("/r/:sub/comments/:id/:title/:comment_id/").get(post::item);
|
||||||
// Search inside subreddit
|
// Search inside subreddit
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
</div>
|
</div>
|
||||||
{% block search %}{% endblock %}
|
{% block search %}{% endblock %}
|
||||||
<div id="links">
|
<div id="links">
|
||||||
<a id="settings_link" href="/settings">
|
<a id="settings_link" href="/settings/">
|
||||||
<span>settings</span>
|
<span>settings</span>
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
<title>settings</title>
|
<title>settings</title>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue