mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
Remove artifacts
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
{{- extends "layout/default" }}
|
||||
{{- block body() }}
|
||||
<div class="container">
|
||||
<div class="vision-container">
|
||||
<h2>{{.Category.Title}}</h2>
|
||||
<p>{{.Category.Description}}</p>
|
||||
{{- range _, article := .Category.Articles }}
|
||||
<div class="vision-preview vision-preview-large">
|
||||
<div class="vision-thumbnail">
|
||||
<img src="{{article.Thumbnail}}" alt="{{article.Title}}" />
|
||||
</div>
|
||||
<div class="vision-metadata">
|
||||
<a class="vision-title" href="/pixivision/a/{{article.ID}}">
|
||||
{{- article.Title}}
|
||||
</a>
|
||||
<div class="vision-metadata-other">
|
||||
<div class="tag-list">
|
||||
{{- range _, tag := article.Tags }}
|
||||
<a href="/pixivision/tag/{{tag.ID}}">#{{tag.Name}}</a>
|
||||
{{- end }}
|
||||
</div>
|
||||
<div>
|
||||
<div>{{parseTimeCustomFormat(article.Date, "2006-01-02")}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{- end }}
|
||||
</div>
|
||||
</div>
|
||||
{{- end }}
|
||||
+6
-5
@@ -18,10 +18,11 @@ A release version will be published when all features assigned with that version
|
||||
| Features | Release |
|
||||
|-----------------------------------------------------------|---------|
|
||||
| AI/R15/R18/R18-G filtering | 2.9 ✅ |
|
||||
| Pixivision (articles, tags, categories, RSS) | 2.10 🔁 |
|
||||
| Full landing page (recommended users, trending tags, ...) | 2.10 🔁 |
|
||||
| Novel series | 2.9 ✅ |
|
||||
| Testing | 2.10 🔁 |
|
||||
| Pixivision (articles, tags, categories, RSS) | 2.10 🔁 |
|
||||
| Full landing page (recommended users, trending tags, ...) | 2.10 🔁 |
|
||||
| Manga series | N/A |
|
||||
| Novel series | N/A |
|
||||
| Complete novel content support (furigana, pages, ...) | N/A |
|
||||
| Pixiv Sketch | N/A |
|
||||
| Pixiv Idea (pixiv.net/idea) | N/A |
|
||||
@@ -58,7 +59,7 @@ A release version will be published when all features assigned with that version
|
||||
- [ ] **Manga series**
|
||||
|
||||
Serialized web comics.
|
||||
|
||||
|
||||
Example: [Pixiv Manga Series](https://www.pixiv.net/user/13651304/series/171013)
|
||||
|
||||
- [ ] **Novel series**
|
||||
@@ -90,7 +91,7 @@ A release version will be published when all features assigned with that version
|
||||
There are a lot of sections for the landing page. [Pixiv Landing](https://www.pixiv.net/ajax/top/illust)
|
||||
|
||||
The artwork parsing part has already been implemented flawlessly.
|
||||
|
||||
|
||||
We only have to write the frontend code for those sections.
|
||||
|
||||
- [ ] **Various interesting pages from Pixiv.net:**
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ func setup() {
|
||||
var err error
|
||||
|
||||
if err = playwright.Install(); err != nil {
|
||||
log.Fatalf("could not install playwright dependencies")
|
||||
log.Fatalf("could not install playwright dependencies. %s", err)
|
||||
}
|
||||
|
||||
pw, err = playwright.Run()
|
||||
|
||||
Reference in New Issue
Block a user