-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.old
More file actions
66 lines (53 loc) · 2.09 KB
/
Copy pathindex.html.old
File metadata and controls
66 lines (53 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="sfjava : Daniel Kopyc : Notes and Code-Snippets from a Software Developer" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>sfjava : Daniel Kopyc</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/sfjava">View on GitHub</a>
<h1 id="project_title">sfjava <span class="separator">:</span> <span class="author_name">Daniel Kopyc</span></h1>
<h2 id="project_tagline">Notes and Code-Snippets from a Software Developer</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Welcome</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam
placerat pharetra turpis, hendrerit tincidunt elit aliquet
eget. Quisque convallis, lectus eu posuere eleifend, ligula lectus
vulputate felis, sed molestie tellus purus ut lectus. Vivamus bibendum
feugiat magna, eu lobortis metus ullamcorper quis. In porttitor cursus
fringilla. Nulla vestibulum sapien vitae justo iaculis ac sagittis
augue luctus. Sed tristique fringilla dui id aliquam. Donec adipiscing
egestas massa, ac condimentum nisl hendrerit vulputate. Aliquam a
mauris leo, ut sollicitudin nulla.
</p>
<pre><code>- (IBAction)changeGreeting:(id)sender {
self.userName = self.textField.text;
NSString *nameString = self.userName;
if ([nameString length] == 0) {
nameString = @"World";
}
NSString *greeting = [[NSString alloc] initWithFormat:@"Hello, %@!", nameString];
self.label.text = greeting;
}
</code></pre>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>