mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #2831 from overleaf/ew-delete-unused-templates
Delete unused external pages GitOrigin-RevId: 02d179b613815f3aad3e189a4f57db8e42bdf2a3
This commit is contained in:
parent
935fdb2b5e
commit
63c155b1e8
2 changed files with 0 additions and 44 deletions
|
@ -16,20 +16,6 @@ module.exports = {
|
|||
webRouter.get('/', HomeController.index)
|
||||
webRouter.get('/home', HomeController.home)
|
||||
|
||||
webRouter.get(
|
||||
'/tos',
|
||||
HomeController.externalPage('tos', 'Terms of Service')
|
||||
)
|
||||
webRouter.get('/about', HomeController.externalPage('about', 'About Us'))
|
||||
|
||||
webRouter.get(
|
||||
'/security',
|
||||
HomeController.externalPage('security', 'Security')
|
||||
)
|
||||
webRouter.get(
|
||||
'/privacy_policy',
|
||||
HomeController.externalPage('privacy', 'Privacy Policy')
|
||||
)
|
||||
webRouter.get(
|
||||
'/planned_maintenance',
|
||||
HomeController.externalPage('planned_maintenance', 'Planned Maintenance')
|
||||
|
@ -38,7 +24,6 @@ module.exports = {
|
|||
'/style',
|
||||
HomeController.externalPage('style_guide', 'Style Guide')
|
||||
)
|
||||
webRouter.get('/jobs', HomeController.externalPage('jobs', 'Jobs'))
|
||||
|
||||
webRouter.get(
|
||||
'/track-changes-and-comments-in-latex',
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
extends layout
|
||||
|
||||
block content
|
||||
.content
|
||||
.row
|
||||
.span10.offset1
|
||||
.box
|
||||
.row-fluid
|
||||
.span12
|
||||
.page-header
|
||||
h1 Recover projects
|
||||
|
||||
.row-fluid
|
||||
.span12
|
||||
.well
|
||||
p If any of your projects are missing, or are not showing the most recent updates, you
|
||||
| can recover from our latest back ups here. If you have any problems, please get in
|
||||
| touch (support@sharelatex.com).
|
||||
|
||||
.row-fluid
|
||||
table.table
|
||||
each project in projects
|
||||
tr
|
||||
- project_id = project._id.toString()
|
||||
td(width="50%", ng-non-bindable) #{project.name}
|
||||
td(width="25%")
|
||||
a.btn(href="/project/"+project_id+"/zip") Download latest version as Zip
|
||||
|
||||
include general/small-footer
|
Loading…
Reference in a new issue