chore: disable delete confirmation in VS Code explorer
Disable the confirmation dialog when deleting files in the VS Code explorer to streamline the development workflow and reduce friction during file management operations.
This commit is contained in:
33
website/node_modules/express-ejs-layouts/example/views/layout.ejs
generated
vendored
Normal file
33
website/node_modules/express-ejs-layouts/example/views/layout.ejs
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title><%= title %></title>
|
||||
|
||||
<% /* Place any styles in the page in this section. */ %>
|
||||
<%- style %>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<% /*
|
||||
Define an required placeholder for the header.
|
||||
If a page doesn't define a header, there will be an error when rendering.
|
||||
*/ %>
|
||||
<%- header %>
|
||||
</header>
|
||||
|
||||
<%- body %>
|
||||
|
||||
<footer>
|
||||
<% /*
|
||||
Define an optional placeholder for the footer.
|
||||
If a page doesn't define a footer, this section will simply be empty.
|
||||
*/ %>
|
||||
<%- defineContent('footer') %>
|
||||
</footer>
|
||||
|
||||
<% /* Place any scripts contained in views at the end of the page. */ %>
|
||||
<%- script %>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user