diff options
author | ktprograms <71804605+ktprograms@users.noreply.github.com> | 2022-04-13 04:36:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 16:36:24 -0400 |
commit | 4396d0e7c9eb4e05db9ce55b72c6a55cc68efbfe (patch) | |
tree | 823db77bf26d48ef3a2c21e8824fbd47ba0ce216 /docs | |
parent | f029b9ae4f85d5c1d678709ae0e7d656c3fad3db (diff) | |
download | gitea-4396d0e7c9eb4e05db9ce55b72c6a55cc68efbfe.tar.gz gitea-4396d0e7c9eb4e05db9ce55b72c6a55cc68efbfe.zip |
Note where frontend files are located in docs (#19379)
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/developers/guidelines-frontend.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/content/doc/developers/guidelines-frontend.md b/docs/content/doc/developers/guidelines-frontend.md index 9fec5bd17e..874896c5dc 100644 --- a/docs/content/doc/developers/guidelines-frontend.md +++ b/docs/content/doc/developers/guidelines-frontend.md @@ -23,7 +23,13 @@ menu: Gitea uses [Less CSS](https://lesscss.org), [Fomantic-UI](https://fomantic-ui.com/introduction/getting-started.html) (based on [jQuery](https://api.jquery.com)) and [Vue2](https://vuejs.org/v2/guide/) for its frontend. -The HTML pages are rendered by [Go HTML Template](https://pkg.go.dev/html/template) +The HTML pages are rendered by [Go HTML Template](https://pkg.go.dev/html/template). + +The source files can be found in the following directories: +* **Less styles:** `web_src/less/` +* **Javascript files:** `web_src/js/` +* **Vue layouts:** `web_src/js/components/` +* **HTML templates:** `templates/` ## General Guidelines |