├── .vscode └── settings.json ├── README.md ├── images └── logo.png ├── style.css └── index.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # django 2 | [django](https://ijasmoopan.github.io/django/) 3 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ijasmoopan/django/HEAD/images/logo.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .header{ 2 | background: #0C4B33; 3 | /* overflow: hidden; */ 4 | margin: 0; 5 | padding: 10px 0 6px; 6 | width: 100%; 7 | height: 56px; 8 | } 9 | 10 | body{ 11 | margin: 0; 12 | padding: 0; 13 | font-family: 'Raleway', sans-serif; 14 | } 15 | .logoo{ 16 | font-size: 40px; 17 | font-size: 4rem; 18 | font-family: "Roboto", Corbel, Avenir, "Lucida Grande", "Lucida Sans", sans-serif; 19 | color: #FFF; 20 | display: block; 21 | float: left; 22 | font-weight: 700; 23 | margin: 14px 67px 7px 61px; 24 | overflow: hidden; 25 | text-decoration: none; 26 | text-indent: 100%; 27 | width: 104px; 28 | height: 36px; 29 | } 30 | .logo-text{ 31 | line-height: 1.3; 32 | /* margin: 25px 0 20px; */ 33 | font-family: "Roboto", Corbel, Avenir, "Lucida Grande", "Lucida Sans", sans-serif; 34 | font-size: 16px; 35 | font-size: 1.0rem; 36 | color: #44B78B; 37 | font-weight: 700; 38 | /* width: auto; */ 39 | float: left; 40 | margin: 8px 0 0 -47px; 41 | /* display: none; */ 42 | float: left; 43 | width: 237px; 44 | display: block; 45 | } 46 | .navbar{ 47 | width: 50%; 48 | 49 | } 50 | .container{ 51 | width: 50%; 52 | } 53 | .navbar-head{ 54 | display: block; 55 | /* margin-top: -16px; 56 | margin-left: 706px; */ 57 | padding-top: 26px; 58 | text-decoration: none; 59 | display: block; 60 | font-size: initial; 61 | color: #FFF; 62 | float: right; 63 | } 64 | .flex-container{ 65 | display: flex; 66 | background-color: #44B78B; 67 | 68 | } 69 | .flex-container > div { 70 | background-color: #FFF; 71 | margin: 10px; 72 | padding: 20px; 73 | font-size: 30px; 74 | 75 | } 76 | .flex-container-2{ 77 | display: flex; 78 | margin: 0 0 0 650px; 79 | font-family: Palatino, "Palatino Linotype", "Book Antiqua", "Hoefler Text", Georgia, "Lucida Bright", Cambria, Times, "Times New Roman", serif; 80 | font-size: 1.2rem; 81 | background: #f8f8f8; 82 | color: #fff; 83 | line-height: 1.6; 84 | font-weight: bold; 85 | } 86 | .flex-container-2 > div{ 87 | background-color: #0C4B33; 88 | margin: 0px; 89 | padding: 13px; 90 | font-size: 13px; 91 | } 92 | a{ 93 | text-decoration: none; 94 | color: #FFF; 95 | } 96 | .flex-container-3{ 97 | display: flex; 98 | width: 100%; 99 | 100 | align-items: center; 101 | flex-direction: column; 102 | } 103 | .flex-container-3 > div{ 104 | padding: 100px; 105 | margin: 0%; 106 | font-size: 40px; 107 | background-color: #fff; 108 | color: #0C4B33; 109 | 110 | text-align: center; 111 | font-style: normal; 112 | } 113 | .button-start{ 114 | width: 286px; 115 | height: 65px; 116 | font-size: 16px; 117 | 118 | 119 | background-color: #3ad398; 120 | color: #fff; 121 | border: none; 122 | cursor: pointer; 123 | border-radius: 7px; 124 | border-style: solid; 125 | } 126 | .button-start:hover{ 127 | background-color: #0C4B33; 128 | } 129 | .flex-container-4{ 130 | display: flex; 131 | width: 100%; 132 | align-items: center; 133 | flex-direction: column; 134 | height: 150px; 135 | border-bottom: 1px solid lightgray; 136 | margin-top: -50px; 137 | } 138 | .flex-container-4 > div{ 139 | margin: 0%; 140 | font-size: 40px; 141 | background-color: #fff; 142 | color: #fff; 143 | width: 100%; 144 | text-align: center; 145 | font-style: normal; 146 | } 147 | .main-body-center{ 148 | display: flex; 149 | } 150 | .body-center-1{ 151 | display: flex; 152 | flex-direction: column; 153 | flex: 0.6; 154 | padding: 20px 80px 30px 80px; 155 | font-family: 'Source Serif 4', sans-serif; 156 | color: black; 157 | } 158 | .body-center-2{ 159 | flex: 0.4; 160 | background-color: #f3f2ef; 161 | 162 | padding: 30px; 163 | } 164 | .body-center-1 h1,h3{ 165 | font-family: 'Raleway', sans-serif; 166 | } 167 | .center-1-1{ 168 | display: flex; 169 | width: fit-content; 170 | padding: 10px; 171 | 172 | } 173 | .center-1-1-icon{ 174 | color: white; 175 | background-color: #3ad398; 176 | padding: 20px; 177 | text-align: center; 178 | border-radius: 70px; 179 | height: 50px; 180 | width: 60px; 181 | } 182 | .center-1-1 i{ 183 | border-radius: 38px; 184 | 185 | } 186 | .center-2-button{ 187 | background-color: #3ad398; 188 | width: 80%; 189 | height: 50px; 190 | color: white; 191 | border-radius: 10px; 192 | border: none; 193 | cursor: pointer; 194 | } 195 | .center-2-button:hover{ 196 | background-color: #0C4B33; 197 | } 198 | .center-2-1{ 199 | 200 | text-align: center; 201 | 202 | } 203 | 204 | 205 | .center-2-1-1{ 206 | font-size: 13px; 207 | color: #3ad398; 208 | font-weight: 500; 209 | cursor: pointer; 210 | text-align: center; 211 | 212 | } 213 | .support-image{ 214 | width: 100px; 215 | height: 100px; 216 | } 217 | .learn-button{ 218 | text-align: center; 219 | padding: 50px; 220 | color: gray; 221 | width: 100%; 222 | height: fit-content; 223 | } 224 | .learn-button-icon{ 225 | width: 400px; 226 | height: 70px; 227 | background-color: white; 228 | border-radius: 5px; 229 | border: 1px solid lightgray; 230 | color: gray; 231 | cursor: pointer; 232 | font-size: 18px; 233 | } 234 | .learn-button-icon:hover{ 235 | border: 2px solid darkgray; 236 | color: darkgray; 237 | } 238 | .body-bottom{ 239 | display: flex; 240 | justify-content: space-evenly; 241 | 242 | } 243 | .body-bottom-1{ 244 | flex-direction: row; 245 | flex: 0.5; 246 | padding: 20px; 247 | } 248 | .body-bottom-2{ 249 | flex: 0.5; 250 | padding: 20px; 251 | } 252 | .bottom-email{ 253 | border: 1px solid lightgray; 254 | border-radius: 5px; 255 | height: 45px; 256 | display: flex; 257 | flex-direction: row; 258 | } 259 | .bottom-email-box{ 260 | color: #3ad398; 261 | border: none; 262 | width: 308px; 263 | padding: 14px; 264 | } 265 | .bottom-email-icon{ 266 | padding: 10px; 267 | justify-content: flex-end; 268 | color: #3ad398; 269 | } 270 | .footer{ 271 | background-color: #3ad398; 272 | width: 100%; 273 | height: fit-content; 274 | display: flex; 275 | color: white; 276 | } 277 | .footer-part{ 278 | flex: 0.25; 279 | padding: 40px; 280 | } 281 | .footer-part p{ 282 | cursor: pointer; 283 | } 284 | .footer-part p:hover{ 285 | text-decoration: underline; 286 | } 287 | .bottom-footer{ 288 | display: flex; 289 | background-color: #0C4B33; 290 | height: fit-content; 291 | width: 100%; 292 | } 293 | .bottom-footer-part{ 294 | flex: 0.3; 295 | padding: 30px; 296 | } 297 | .bottom-footer-part p{ 298 | margin: 0; 299 | } 300 | .bottom-footer-part-1{ 301 | display: flex; 302 | align-items: center ; 303 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Django 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 | 23 | 24 | 25 |

The web framework for perfectionists with deadlines.

26 | 27 | 30 |
31 |
OVERVIEW
32 |
DOWNLOADS
33 |
DOCUMENTATION
34 |
NEWS
35 |
COMMUNITY
36 |
CODE
37 |
ISSUES
38 |
ABOUT
39 |
♥DONATE
40 | 41 |
42 |
43 |
44 | 49 |
50 |
51 |
Django makes it easier to build better web
apps more quickly and with less code.
52 |
53 |
54 |
55 |
56 |
57 |
58 |

Meet Django

59 |

Django is a high-level Python web framework that encourages rapid development and clean, pragmatic
design. Built by experienced developers, it takes care of much of the hassle of web development, so you can
focus on writing your app without needing to reinvent the wheel. It’s free and open source.

60 | 61 |
flash_on

Ridiculously fast.

62 |

Django was designed to help developers take applications from concept to completion as quickly as possible.

63 | 64 |
lock

Reassuringly secure.

65 |

Django takes security seriously and helps developers avoid many common security mistakes.

66 |
flash_on

Exceedingly scalable.

67 |

Some of the busiest sites on the web leverage Django’s ability to quickly and flexibly scale.

68 | 69 |
70 |

71 |

Stay in the loop

72 |

Subscribe to one of our mailing lists to stay up to date with everything in the Django community:

73 | 74 |
75 |
76 |

Using Django

77 |

Get help with Django and follow announcements.

78 | 83 |

You can also subscribe by sending an email to django-users+subscribe@googlegroups.com and following the instructions that will be sent to you.

84 |
85 |
86 |

Contributing to Django

87 |

Contribute to the development of Django itself.

88 | 93 |

Before asking a question about how to contribute, read Contributing to Django. Many frequently asked questions are answered there.

94 |

95 |

You can also subscribe by sending an email to django-developers+subscribe@googlegroups.com and following the instructions that will be sent to you.

96 | 97 |
98 |
99 |

We have a few other specialized lists (announce, i18n, ...). You can find more information about them in our mailing list documentation.

100 |
101 | 102 | 103 | 104 |
105 |
106 |
107 |

DJANGO DOCUMENTATION >

108 |

Support Django!

109 | 110 |
Support Django!
111 |

Cristiano Lopes donated to the Django Software Foundation to support Django development. Donate today!

112 | 113 |

Latest News

114 |

115 |

Could you host DjangoCon Europe 2023?

116 |
DjangoCon Europe 2022 will be held from the 21st - 25th September in Porto, Portugal, hopefully, but we're already looking ahead to next year's conference. Could your town - or your football stadium, circus tent, private island or city hall - host this wonderful community event?
117 |
Posted by Anna Makarudze on February 3, 2022
118 | 119 |

120 |

Django security releases issued: 4.0.2, 3.2.12, and 2.2.27

121 |
Django 4.0.2, 3.2.12, and 2.2.27 fix two security issues
122 |
Posted by Mariusz Felisiak on February 1, 2022
123 |

MORE NEWS >

124 |

New to Django?

125 |

126 |

Installation guide

127 |

Write your first Django app

128 |

GETTING STARTED WITH DJANGO >

129 |

The power of Django

130 |

131 |

Object-relational mapper

132 |

Automatic admin interface

133 |

Robust template system

134 |

Quick internalization

135 |

EXPLORE MORE FEATURES >

136 |

Get involved

137 |

138 |

#django IRC channel

139 |
Our non-profit supports the project
140 |

Support Django

141 |
Your contribution makes Django stronger
142 |

Contact the Django Software Foundation

143 |

MORE ABOUT THE DSF >

144 | 145 |
146 |
147 | 148 | 149 |
150 | 151 | 152 |
153 | 154 | 155 | 191 | 201 | 202 |
203 | 204 | 205 | --------------------------------------------------------------------------------