...">

How to change HTML file template to beta version of Aptana Studio 3?

Aptana Studio 3 beta HTML5 template below:

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame Remove this if you use the .htaccess --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>new-file</title> <meta name="description" content="" /> <meta name="generator" content="Studio 3 http://aptana.com/" /> <meta name="author" content="Wei Lou" /> <meta name="viewport" content="width=device-width; initial-scale=1.0" /> <!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references --> <link rel="shortcut icon" href="/favicon.ico" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> </head> <body> <div> <header> <h1>new-file</h1> </header> <nav> <p><a href="/">Home</a></p> <p><a href="/contact">Contact</a></p> </nav> <div> </div> <footer> <p>&copy; Copyright 2011 by Wei Lou</p> </footer> </div> </body> </html> 

I want to change it. But I can not find a way.

Thanks!

+4
source share
2 answers

Ingo directions point to a detailed explanation of how to create a new template from scratch. In this case, since you want to modify an existing template, you can try the following.

  • Choose command-> HTML-> Change this bundle. This will create a new "HTML" project in your workspace.
  • Open the templates folder in the HTML project
  • Edit and save the html5.html file

Now when you create a new HTML template, it should use a copy of the html5.html file that you edited. Of course, you can edit any of the other templates in this project.

+12
source

The easiest way is to follow the instructions for creating a new template: http://wiki.appcelerator.org/display/tis/Creating+a+new+template . Then you can change the content as you like.

+3
source

Source: https://habr.com/ru/post/1346503/


All Articles