-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path8319.rss
173 lines (162 loc) · 6.72 KB
/
8319.rss
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>קוד: שבוע 12 שידור חי מספר 1</title>
<link>https://forums.pythonic.guru/t/12-1/8319</link>
<description>HTML:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<!-- https://github.com/joshbuchea/HEAD -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GitHub Search</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/css/bootstrap.min.css" integrity="sha384-DhY6onE6f3zzKbjUPRc2hOzGAdEf4/Dz+WJwBvEYL/lkkIsI3ihufq9hk9K4lVoK" crossorigin="anonymous">
<link rel="stylesheet" href="my.css">
</head>
<body>
<h1>חיפוש בקוד</h1>
<div id="search">
<form id="search-form" class="row">
<div class="col-auto">
<label for="languages" class="visually-hidden">שפות תכנות</label>
<input class="form-control" id="languages" name="languages" type="text" placeholder="שפות תכנות" tabindex=0 autofocus>
</div>
<div class="col-auto">
<label for="keywords" class="visually-hidden">מילות חיפוש</label>
<input class="form-control" id="keywords" name="keywords" type="text" placeholder="מילות חיפוש">
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary">חיפוש</button>
</div>
</form>
</div>
<h2>תוצאות</h2>
<div id="results">
<!-- One result -->
<div class="result" data-result-id="1">
<div class="repo-details">
<div class="repo-name repo-property">{{ repo_name }}</div>
<div class="repo-languages repo-property">{{ repo_languages }}</div>
<div class="repo-stars repo-property">{{ repo_stars }}</div>
<div class="repo-followers repo-property">{{ repo_followes }}</div>
</div>
<div class="repo-code-samples">
<pre>{{ code_sample }}</pre>
</div>
</div>
</div>
</body>
</html>
```
CSS:
```css
html {
text-align: right;
direction: rtl;
margin: 1em;
}
#results {
margin: 0.5em;
background: rgba(230, 230, 230, 0.95);
}
.repo-details {
background: rgba(210, 210, 210, 0.95);
display: flex;
justify-content: space-between;
}
.repo-property {
display: flex;
}
h2 {
margin-top: 3rem;
margin-bottom: 1rem;
}
```</description>
<language>he</language>
<lastBuildDate>Thu, 07 Jul 2022 01:49:17 +0000</lastBuildDate>
<category>שבוע 12</category>
<atom:link href="https://forums.pythonic.guru/t/12-1/8319.rss" rel="self" type="application/rss+xml" />
<item>
<title>קוד: שבוע 12 שידור חי מספר 1</title>
<dc:creator><![CDATA[Yam]]></dc:creator>
<description><![CDATA[
<p>HTML:</p>
<pre data-code-wrap="html"><code class="lang-nohighlight"><!DOCTYPE html>
<html lang="en">
<head>
<!-- https://github.com/joshbuchea/HEAD -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GitHub Search</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha2/css/bootstrap.min.css" integrity="sha384-DhY6onE6f3zzKbjUPRc2hOzGAdEf4/Dz+WJwBvEYL/lkkIsI3ihufq9hk9K4lVoK" crossorigin="anonymous">
<link rel="stylesheet" href="my.css">
</head>
<body>
<h1>חיפוש בקוד</h1>
<div id="search">
<form id="search-form" class="row">
<div class="col-auto">
<label for="languages" class="visually-hidden">שפות תכנות</label>
<input class="form-control" id="languages" name="languages" type="text" placeholder="שפות תכנות" tabindex=0 autofocus>
</div>
<div class="col-auto">
<label for="keywords" class="visually-hidden">מילות חיפוש</label>
<input class="form-control" id="keywords" name="keywords" type="text" placeholder="מילות חיפוש">
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary">חיפוש</button>
</div>
</form>
</div>
<h2>תוצאות</h2>
<div id="results">
<!-- One result -->
<div class="result" data-result-id="1">
<div class="repo-details">
<div class="repo-name repo-property">{{ repo_name }}</div>
<div class="repo-languages repo-property">{{ repo_languages }}</div>
<div class="repo-stars repo-property">{{ repo_stars }}</div>
<div class="repo-followers repo-property">{{ repo_followes }}</div>
</div>
<div class="repo-code-samples">
<pre>{{ code_sample }}</pre>
</div>
</div>
</div>
</body>
</html>
</code></pre>
<p>CSS:</p>
<pre><code class="lang-css">html {
text-align: right;
direction: rtl;
margin: 1em;
}
#results {
margin: 0.5em;
background: rgba(230, 230, 230, 0.95);
}
.repo-details {
background: rgba(210, 210, 210, 0.95);
display: flex;
justify-content: space-between;
}
.repo-property {
display: flex;
}
h2 {
margin-top: 3rem;
margin-bottom: 1rem;
}
</code></pre>
<p><a href="https://forums.pythonic.guru/t/12-1/8319/1">קריאת הנושא במלואו</a></p>
]]></description>
<link>https://forums.pythonic.guru/t/12-1/8319/1</link>
<pubDate>Sun, 11 Oct 2020 18:54:30 +0000</pubDate>
<guid isPermaLink="false">forums.pythonic.guru-post-8319-1</guid>
<source url="https://forums.pythonic.guru/t/12-1/8319.rss">קוד: שבוע 12 שידור חי מספר 1</source>
</item>
</channel>
</rss>