welcomePage.html 2.6 KB
Newer Older
C
Christof Marti 已提交
1
<div class="welcomePage">
2 3 4 5
	<div class="title">
		<h1>Visual Studio Code</h1>
		<p class="subtitle">Editing evolved</p>
	</div>
6 7 8 9 10
	<div class="row">
		<div class="splash">
			<div class="section start">
				<h2>Start</h2>
				<ul>
11 12
					<li class="mac-only"><a href="command:workbench.action.files.openFileFolder">Open folder...</a></li>
					<li class="windows-only linux-only"><a href="command:workbench.action.files.openFolder">Open folder...</a></li>
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
					<li><a href="command:workbench.action.git.clone">Clone Git repository...</a></li>
				</ul>
			</div>
			<div class="section recent">
				<h2>Recent</h2>
				<ul>
					<!-- Filled programmatically -->
				</ul>
			</div>
			<div class="section help">
				<h2>Help</h2>
				<ul>
					<li><a href="command:workbench.action.openDocumentationUrl">Product documentation</a></li>
					<li><a href="command:workbench.action.openVideoUrl">Introductory videos</a></li>
					<li><a href="https://github.com/Microsoft/vscode">GitHub repository</a></li>
28
					<li><a href="http://stackoverflow.com/questions/tagged/vscode">Stack Overflow</a></li>
29 30 31 32
					<!-- TODO: Use commands -->
				</ul>
			</div>
			<p class="showOnStartup"><input type="checkbox" id="showOnStartup"> <label for="showOnStartup">Show welcome page on startup</label></p>
C
Christof Marti 已提交
33
		</div>
34 35
		<div class="commands">
			<h2>Quick links</h2>
C
Christof Marti 已提交
36
			<ul>
37
				<li><button data-href="command:workbench.action.weclomeOverlay"><h3>Interface overview</h3> <span>Quick overview of the major UI components.</span></button></li>
38
				<li><button data-href="command:workbench.action.selectTheme"><h3>Themes</h3> <span>Change the editor's color theme.</span></button></li>
39 40
				<li><button data-href="command:workbench.action.keybindingsReference"><h3>Keyboard shortcuts</h3> <span>Reference guide for the most common keboard shortcuts.</span></button></li>
				<li><button data-href="command:workbench.action.showCommands"><h3>Show all commands</h3> <span>Open the command pallette to see a full list of commands.</span></button></li>
41
				<li><button data-href="command:workbench.action.openGlobalSettings"><h3>Settings</h3> <span>Change settings to match your preferences.</span></button></li>
42
				<li><button data-href="command:workbench.extensions.action.showRecommendedKeymapExtensions"><h3>Keymaps for other editors</h3> <span>Map the default keyboard shortcuts to another editor's style.</span></button></li>
43
				<li><button data-href="command:workbench.action.editorWalkThrough"><h3>Interactive playground</h3> <span>Try out essential editor features out in a short walk-through.</span></button></li>
C
Christof Marti 已提交
44 45 46 47
			</ul>
		</div>
	</div>
</div>