|
160 | 160 | <% e.begin_block("indexCustomScripts"); %>
|
161 | 161 | <script src="static/skins/<%=encodeURI(settings.skinName)%>/index.js?v=<%=settings.randomVersionString%>"></script>
|
162 | 162 | <% e.end_block(); %>
|
| 163 | + |
| 164 | + <script> |
| 165 | + window.addEventListener('load', function () { |
| 166 | + if (document.cookie.match(/agreed-cookiepolicy=[^;]+;?/)) return; |
| 167 | + |
| 168 | + const cookieNotice = document.createElement('div'); |
| 169 | + cookieNotice.classList.add('_cookie-notice'); |
| 170 | + const lang = location.pathname.match(/\/en\/?$/) ? 'en' : 'zh'; |
| 171 | + const notice = lang === 'zh' ? '我们使用cookie来确保您的高速浏览体验。需要了解更多信息,请参阅我们的' : 'We use cookies to enhance your browsing experience. For more information, see'; |
| 172 | + const aboutCookies = lang === 'zh' ? '《关于cookies》' : 'About Cookies'; |
| 173 | + cookieNotice.innerHTML = ` |
| 174 | + ${notice} |
| 175 | + <a href="https://www.openeuler.org/en/other/cookies/" target="_blank"> |
| 176 | + ${aboutCookies} |
| 177 | + </a> |
| 178 | + ${lang === 'zh' ? '。' : '.'} |
| 179 | + <button class="cookie-notice-close">×</button> |
| 180 | + `; |
| 181 | + const style = document.createElement('style'); |
| 182 | + style.innerHTML = ` |
| 183 | + ._cookie-notice { |
| 184 | + position: fixed; |
| 185 | + bottom: 0; |
| 186 | + left: 0; |
| 187 | + width: 100%; |
| 188 | + background-color: #333; |
| 189 | + color: white; |
| 190 | + padding: 15px; |
| 191 | + text-align: center; |
| 192 | + z-index: 1000; |
| 193 | + } |
| 194 | + ._cookie-notice a { |
| 195 | + cursor: pointer; |
| 196 | + color: #406fe7; |
| 197 | + text-decoration: none; |
| 198 | + } |
| 199 | + ._cookie-notice a:hover { |
| 200 | + color: #5988ff; |
| 201 | + } |
| 202 | + .cookie-notice-close { |
| 203 | + background-color: transparent; |
| 204 | + border: none; |
| 205 | + color: white; |
| 206 | + cursor: pointer; |
| 207 | + font-size: 20px; |
| 208 | + margin-left: 10px; |
| 209 | + } |
| 210 | + @media (max-width: 768px) { |
| 211 | + ._cookie-notice { |
| 212 | + padding-top: 25px; |
| 213 | + } |
| 214 | +
|
| 215 | + .cookie-notice-close { |
| 216 | + position: absolute; |
| 217 | + top: 0; |
| 218 | + right: 20px; |
| 219 | + } |
| 220 | + } |
| 221 | + `; |
| 222 | + document.head.appendChild(style); |
| 223 | + document.body.appendChild(cookieNotice); |
| 224 | + const closeButton = cookieNotice.querySelector('.cookie-notice-close'); |
| 225 | + closeButton.addEventListener('click', function () { |
| 226 | + cookieNotice.remove(); |
| 227 | + document.cookie = `agreed-cookiepolicy=4;domain=.openeuler.org;path=/;max-age=${60 * 60 * 24 * 180}`; |
| 228 | + }); |
| 229 | + }); |
| 230 | + </script> |
| 231 | + |
163 | 232 | <div style="display:none"><a href="/javascript" data-jslicense="1">JavaScript license information</a></div>
|
164 | 233 | </html>
|
0 commit comments