feat: update footer with site policies, add CTA retrieval SQL, and refactor block content management

This commit is contained in:
2026-07-17 22:07:01 +07:00
parent 49b8d2b2ea
commit 6af9240c22
59 changed files with 140 additions and 612 deletions
+11
View File
@@ -0,0 +1,11 @@
import org.springframework.web.util.UriComponentsBuilder;
public class test_uri {
public static void main(String[] args) {
String base = "https://accounts.google.com/o/oauth2/v2/auth?prompt=select_account";
String full = UriComponentsBuilder.fromUriString(base)
.queryParam("client_id", "123")
.build().toUriString();
System.out.println(full);
}
}