Changeset 146 in code
- Timestamp:
- Feb 12, 2024, 3:56:44 PM (16 months ago)
- Location:
- trunk
- Files:
-
- 261 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.gitignore
r142 r146 1 yukari 1 vendor 2 /yukari -
trunk/Makefile
r145 r146 19 19 all: yukari 20 20 21 yukari: 21 yukari: vendor 22 22 $(GO) build $(GOFLAGS) -o $@ 23 23 clean: … … 32 32 bench: 33 33 go test -benchmem -bench . 34 34 vendor: 35 go mod vendor 35 36 .PHONY: yukari clean install -
trunk/yukari.go
r144 r146 223 223 <style> 224 224 html { height: 100%; } 225 body { min-height : 100%; display: flex; flex-direction:column; font-family: 'Garamond', 'Georgia',serif; text-align: center; color: #BC4BFC; background: #240039; margin: 0;225 body { min-height : 100%; display: flex; flex-direction:column; font-family: sans-serif; text-align: center; color: #BC4BFC; background: #240039; margin: 0; 226 226 padding: 0; font-size: 1.1em; } 227 227 input { border: 1px solid #888; padding: 0.3em; color: #BC4BFC; background: #202020; font-size: 1.1em; } … … 244 244 <div class="footer"> 245 245 <p>Yukari rewrites web pages to exclude malicious HTML tags and CSS/HTML attributes. It also replaces external resource references to prevent third-party information leaks.<br /> 246 <a href="https://git.chaotic.ninja/ yakumo.izuru/yukari">view on 「混沌とした 忍者」Git</a>246 <a href="https://git.chaotic.ninja/usr/yakumo_izuru/yukari">view on 「混沌とした 忍者」Git</a> 247 247 </p> 248 248 </div> … … 269 269 <span><a href="/">Yukari's Gap</a></span> 270 270 <input type="url" value="{{.BaseURL}}" name="{{.URLParamName}}" {{if .HasYukariKey }}readonly="true"{{end}} /> 271 This is a <a href="https://git.chaotic.ninja/ yakumo.izuru/yukari">proxified and sanitized</a> view of the page, visit <a href="{{.BaseURL}}" rel="noreferrer">original site</a>.271 This is a <a href="https://git.chaotic.ninja/usr/yakumo_izuru/yukari">proxified and sanitized</a> view of the page, visit <a href="{{.BaseURL}}" rel="noreferrer">original site</a>. 272 272 </form> 273 273 </div>
Note:
See TracChangeset
for help on using the changeset viewer.