Skip to content

Commit bf6dc20

Browse files
committed
Update home index
1 parent 3d7548c commit bf6dc20

File tree

2 files changed

+237
-1
lines changed

2 files changed

+237
-1
lines changed

.gitignore

Lines changed: 236 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
### Dancing goat ###
2+
3+
# Private configuration
4+
ConnectionStrings.config
5+
AppSettings.config
6+
7+
### Kentico ###
8+
9+
# Internal dependencies
10+
CMSDependencies/
11+
12+
# Language resources
13+
CMSResources/
14+
15+
### VisualStudio ###
16+
17+
# User-specific files
18+
*.suo
19+
*.user
20+
*.userosscache
21+
*.sln.docstates
22+
23+
# User-specific files (MonoDevelop/Xamarin Studio)
24+
*.userprefs
25+
26+
# Build results
27+
[Dd]ebug/
28+
[Dd]ebugPublic/
29+
[Rr]elease/
30+
[Rr]eleases/
31+
x64/
32+
x86/
33+
build/
34+
bld/
35+
[Bb]in/
36+
[Oo]bj/
37+
38+
# Visual Studio 2015 cache/options directory
39+
.vs/
40+
41+
# MSTest test Results
42+
[Tt]est[Rr]esult*/
43+
[Bb]uild[Ll]og.*
44+
45+
# NUNIT
46+
*.VisualState.xml
47+
TestResult.xml
48+
49+
# Build Results of an ATL Project
50+
[Dd]ebugPS/
51+
[Rr]eleasePS/
52+
dlldata.c
53+
54+
# DNX
55+
project.lock.json
56+
artifacts/
57+
58+
*_i.c
59+
*_p.c
60+
*_i.h
61+
*.ilk
62+
*.meta
63+
*.obj
64+
*.pch
65+
*.pdb
66+
*.pgc
67+
*.pgd
68+
*.rsp
69+
*.sbr
70+
*.tlb
71+
*.tli
72+
*.tlh
73+
*.tmp
74+
*.tmp_proj
75+
*.log
76+
*.vspscc
77+
*.vssscc
78+
.builds
79+
*.pidb
80+
*.svclog
81+
*.scc
82+
83+
# Chutzpah Test files
84+
_Chutzpah*
85+
86+
# Visual C++ cache files
87+
ipch/
88+
*.aps
89+
*.ncb
90+
*.opensdf
91+
*.sdf
92+
*.cachefile
93+
94+
# Visual Studio profiler
95+
*.psess
96+
*.vsp
97+
*.vspx
98+
99+
# TFS 2012 Local Workspace
100+
$tf/
101+
102+
# Guidance Automation Toolkit
103+
*.gpState
104+
105+
# ReSharper is a .NET coding add-in
106+
_ReSharper*/
107+
*.[Rr]e[Ss]harper
108+
*.DotSettings.user
109+
110+
# JustCode is a .NET coding add-in
111+
.JustCode
112+
113+
# TeamCity is a build add-in
114+
_TeamCity*
115+
116+
# DotCover is a Code Coverage Tool
117+
*.dotCover
118+
119+
# NCrunch
120+
_NCrunch_*
121+
.*crunch*.local.xml
122+
nCrunchTemp_*
123+
124+
# MightyMoose
125+
*.mm.*
126+
AutoTest.Net/
127+
128+
# Web workbench (sass)
129+
.sass-cache/
130+
131+
# Installshield output folder
132+
[Ee]xpress/
133+
134+
# DocProject is a documentation generator add-in
135+
DocProject/buildhelp/
136+
DocProject/Help/*.HxT
137+
DocProject/Help/*.HxC
138+
DocProject/Help/*.hhc
139+
DocProject/Help/*.hhk
140+
DocProject/Help/*.hhp
141+
DocProject/Help/Html2
142+
DocProject/Help/html
143+
144+
# Click-Once directory
145+
publish/
146+
147+
# Publish Web Output
148+
*.[Pp]ublish.xml
149+
*.azurePubxml
150+
*.pubxml
151+
*.publishproj
152+
153+
# NuGet Packages
154+
*.nupkg
155+
# The packages folder can be ignored because of Package Restore
156+
**/packages/*
157+
# except build/, which is used as an MSBuild target.
158+
!**/packages/build/
159+
160+
# But include package target files which may be required for MSBuild
161+
!packages/*.targets
162+
163+
# Windows Azure Build Output
164+
csx/
165+
*.build.csdef
166+
167+
# Windows Store app package directory
168+
AppPackages/
169+
170+
# Visual Studio cache files
171+
# files ending in .cache can be ignored
172+
*.[Cc]ache
173+
# but keep track of directories ending in .cache
174+
!*.[Cc]ache/
175+
176+
# Others
177+
ClientBin/
178+
[Ss]tyle[Cc]op.*
179+
~$*
180+
*~
181+
*.dbmdl
182+
*.dbproj.schemaview
183+
*.pfx
184+
*.publishsettings
185+
node_modules/
186+
orleans.codegen.cs
187+
188+
# RIA/Silverlight projects
189+
Generated_Code/
190+
191+
# Backup & report files from converting an old project file
192+
# to a newer Visual Studio version. Backup files are not needed,
193+
# because we have git ;-)
194+
_UpgradeReport_Files/
195+
Backup*/
196+
UpgradeLog*.XML
197+
UpgradeLog*.htm
198+
199+
# SQL Server files
200+
*.mdf
201+
*.ldf
202+
203+
# Business Intelligence projects
204+
*.rdl.data
205+
*.bim.layout
206+
*.bim_*.settings
207+
208+
# Microsoft Fakes
209+
FakesAssemblies/
210+
211+
# Node.js Tools for Visual Studio
212+
.ntvs_analysis.dat
213+
214+
# Visual Studio 6 build log
215+
*.plg
216+
217+
# Visual Studio 6 workspace options file
218+
*.opt
219+
220+
# Visual Studio LightSwitch build output
221+
**/*.HTMLClient/GeneratedArtifacts
222+
**/*.DesktopClient/GeneratedArtifacts
223+
**/*.DesktopClient/ModelManifest.xml
224+
**/*.Server/GeneratedArtifacts
225+
**/*.Server/ModelManifest.xml
226+
_Pvt_Extensions
227+
228+
#Kentico files
229+
**/App_Data/CMSModules/WebFarm/webfarm.sync
230+
**/App_Data/CIRepository
231+
**/App_Data/Persistent
232+
**/App_Data/CMSModules/SmartSearch
233+
**/App_Data/CMSModules/WebAnalytics
234+
**/App_Data/CMSTemp
235+
**/App_Data/AzureTemp
236+
**/App_Data/AzureCache

WebApplication1/WebApplication1/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</head>
1313
<body>
1414
<div>
15-
Update 1
15+
Update 2
1616
Home page content
1717
</div>
1818
</body>

0 commit comments

Comments
 (0)