... |
... |
@@ -1,94 +2,189 @@ |
1 |
|
-<!-- Global Dashboard for XWiki --> |
2 |
2 |
{{html clean="false"}} |
3 |
3 |
<style> |
4 |
|
- .dashboard { |
5 |
|
- padding: 1rem; |
6 |
|
- max-width: 100%; |
7 |
|
- margin: auto; |
8 |
|
- } |
9 |
|
- .dashboard-header { |
10 |
|
- font-size: 2rem; |
11 |
|
- font-weight: bold; |
12 |
|
- margin-bottom: 1.5rem; |
13 |
|
- text-align: center; |
14 |
|
- } |
15 |
|
- .category-columns { |
16 |
|
- display: grid; |
17 |
|
- grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); |
18 |
|
- gap: 1rem; |
19 |
|
- } |
20 |
|
- .category-box { |
21 |
|
- background-color: #1c1c1c; |
22 |
|
- border: 1px solid #444; |
23 |
|
- border-radius: 8px; |
24 |
|
- padding: 1rem; |
25 |
|
- box-shadow: 0 0 5px #000; |
26 |
|
- } |
27 |
|
- .category-box h3 { |
28 |
|
- font-size: 1.2rem; |
29 |
|
- margin-bottom: 0.5rem; |
30 |
|
- border-bottom: 1px solid #333; |
31 |
|
- padding-bottom: 0.2rem; |
32 |
|
- } |
33 |
|
- .category-box ul { |
34 |
|
- list-style: none; |
35 |
|
- padding: 0; |
36 |
|
- margin: 0; |
37 |
|
- } |
38 |
|
- .category-box ul li { |
39 |
|
- margin-bottom: 0.4rem; |
40 |
|
- } |
41 |
|
- .section { |
42 |
|
- margin-top: 2.5rem; |
43 |
|
- } |
|
3 |
+.dashboard-column h3 a:hover { |
|
4 |
+ text-decoration: underline !important; |
|
5 |
+ text-shadow: 0 0 5px white; |
|
6 |
+ filter: brightness(1.2); |
|
7 |
+} |
|
8 |
+.cat-race a { color: #00ffff !important; } |
|
9 |
+.cat-history a { color: #ffcc66 !important; } |
|
10 |
+.cat-discrimination a { color: #ff6666 !important; } |
|
11 |
+.cat-politics a { color: #3399ff !important; } |
|
12 |
+.cat-media a { color: #cc99ff !important; } |
|
13 |
+.cat-healthcare a { color: #ff9999 !important; } |
|
14 |
+.cat-science a { color: #99ff99 !important; } |
|
15 |
+.cat-social a { color: #ffccff !important; } |
|
16 |
+.cat-crime a { color: #ff9933 !important; } |
|
17 |
+.cat-jews a { color: #ccccff !important; } |
|
18 |
+.cat-humor a { color: #ffff66 !important; } |
|
19 |
+ |
|
20 |
+.dashboard-columns { |
|
21 |
+ display: flex; |
|
22 |
+ justify-content: space-between; |
|
23 |
+ flex-wrap: wrap; |
|
24 |
+ margin-bottom: 2em; |
|
25 |
+ gap: 1.5em; |
|
26 |
+} |
|
27 |
+.dashboard-column { |
|
28 |
+ flex: 1; |
|
29 |
+ min-width: 250px; |
|
30 |
+ background-color: #1a1a1a; |
|
31 |
+ padding: 1em; |
|
32 |
+ border: 1px solid #333; |
|
33 |
+ border-radius: 10px; |
|
34 |
+} |
|
35 |
+.dashboard-column h3 { |
|
36 |
+ margin-top: 0; |
|
37 |
+ border-bottom: 1px solid #444; |
|
38 |
+ padding-bottom: 4px; |
|
39 |
+} |
|
40 |
+.dashboard-column ul { |
|
41 |
+ list-style: none; |
|
42 |
+ padding-left: 0; |
|
43 |
+} |
|
44 |
+.dashboard-column li { |
|
45 |
+ margin: 0.3em 0; |
|
46 |
+} |
44 |
44 |
</style> |
45 |
45 |
|
46 |
|
-<div class="dashboard"> |
47 |
|
- <div class="dashboard-header">π Knowledge Domains</div> |
48 |
|
- <div class="category-columns"> |
49 |
|
- <div class="category-box"> |
50 |
|
- <h3>Race</h3> |
51 |
|
- <ul> |
52 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Race">Overview</a></li> |
53 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Race/Hatred">Hatred</a></li> |
54 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Race/Demographics">Demographics</a></li> |
55 |
|
- </ul> |
56 |
|
- </div> |
57 |
|
- <div class="category-box"> |
58 |
|
- <h3>Discrimination</h3> |
59 |
|
- <ul> |
60 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Discrimination/Employment%20Disparities">Employment Disparities</a></li> |
61 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Discrimination/Privilege">Privilege</a></li> |
62 |
|
- </ul> |
63 |
|
- </div> |
64 |
|
- <div class="category-box"> |
65 |
|
- <h3>Immigration</h3> |
66 |
|
- <ul> |
67 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Immigration">Overview</a></li> |
68 |
|
- <li><a href="/xwiki/bin/view/Main%20Categories/Immigration/Border%20Policy">Border Policy</a></li> |
69 |
|
- </ul> |
70 |
|
- </div> |
71 |
|
- <!-- Add more categories here as needed --> |
72 |
|
- </div> |
|
49 |
+<h2>π Categories</h2> |
|
50 |
+<div class="dashboard-columns"> |
73 |
73 |
|
74 |
|
- <div class="section"> |
75 |
|
- <h2>π§ Research & Stats</h2> |
76 |
|
- {{include reference="Main%20Categories.Research%20and%20stats.ResearchStatsWidget"/}} |
77 |
|
- </div> |
|
52 |
+<!-- COLUMN 1 --> |
|
53 |
+<div class="dashboard-column"> |
|
54 |
+ <h3 class="cat-race"> |
|
55 |
+ π <a href="/bin/view/Main%20Categories/Race/" target="_blank" rel="noopener noreferrer">Race</a> |
|
56 |
+ </h3> |
|
57 |
+ <ul> |
|
58 |
+ <li><a href="/bin/view/Main%20Categories/Race/Common%20Myths">Common Myths</a></li> |
|
59 |
+ <li><a href="/bin/view/Main%20Categories/Race/Nonwhite%20Privilege">Nonwhite Privilege</a></li> |
|
60 |
+ <li><a href="/bin/view/Main%20Categories/Race/Racial%20Demographics%20by%20Country">Racial Demographics</a></li> |
|
61 |
+ <li><a href="/bin/view/Main%20Categories/Race/Racial%20Dynamics">Racial Dynamics</a></li> |
|
62 |
+ <li><a href="/bin/view/Main%20Categories/Race/The%20Great%20Replacement">The Great Replacement</a></li> |
|
63 |
+ <li><a href="/bin/view/Main%20Categories/Race/White%20Genocide">White Genocide</a></li> |
|
64 |
+ </ul> |
78 |
78 |
|
79 |
|
- <div class="section"> |
80 |
|
- <h2>π― Arguments & Counterarguments</h2> |
81 |
|
- {{include reference="Main%20Categories.Arguments%20and%20Counterarguments.ArgumentsWidget"/}} |
82 |
|
- </div> |
|
66 |
+ <h3 class="cat-history">π <a href="/bin/view/Main%20Categories/History/" target="_blank">History</a></h3> |
|
67 |
+ <ul> |
|
68 |
+ <li><a href="/bin/view/Main%20Categories/History/European%20History">European History</a></li> |
|
69 |
+ <li><a href="/bin/view/Main%20Categories/History/Historical%20Quotes">Historical Quotes</a></li> |
|
70 |
+ <li><a href="/bin/view/Main%20Categories/History/USS%20Liberty">USS Liberty</a></li> |
|
71 |
+ </ul> |
83 |
83 |
|
84 |
|
- <div class="section"> |
85 |
|
- <h2>π Recent Activity</h2> |
86 |
|
- {{activity/}} |
87 |
|
- </div> |
|
73 |
+ <h3 class="cat-discrimination"> |
|
74 |
+ <span style="display:inline-block;background:#330000;color:red;padding:0.15em 0.4em;border-radius:0.3em;margin-right:0.4em;">!=</span> |
|
75 |
+ <a href="/bin/view/Main%20Categories/Discrimination/" target="_blank">Discrimination</a> |
|
76 |
+ </h3> |
|
77 |
+ <ul> |
|
78 |
+ <li><a href="/bin/view/Main%20Categories/Discrimination/DEI">DEI</a></li> |
|
79 |
+ <li><a href="/bin/view/Main%20Categories/Discrimination/Discrimination%20Against%20White%20People">Discrimination Against White People</a></li> |
|
80 |
+ <li><a href="/bin/view/Main%20Categories/Discrimination/FAA%20Air%20Traffic%20Controller%20Hiring%20Scandal">FAA Scandal</a></li> |
|
81 |
+ </ul> |
|
82 |
+</div> |
88 |
88 |
|
89 |
|
- <div class="section"> |
90 |
|
- <h2>π·οΈ Tags</h2> |
91 |
|
- {{tagcloud/}} |
92 |
|
- </div> |
|
84 |
+<!-- COLUMN 2 --> |
|
85 |
+<div class="dashboard-column"> |
|
86 |
+ <h3 class="cat-politics">π <a href="/bin/view/Main%20Categories/Immigration and Politics/" target="_blank">Immigration & Politics</a></h3> |
|
87 |
+ <ul> |
|
88 |
+ <li><a href="/bin/view/Main%20Categories/Immigration and Politics/Borderless%20Welfare%20State">Borderless Welfare State</a></li> |
|
89 |
+ <li><a href="/bin/view/Main%20Categories/Immigration and Politics/Migration%20and%20its%20Economic%20Impact">Migration Impact</a></li> |
|
90 |
+ </ul> |
|
91 |
+ |
|
92 |
+ <h3 class="cat-media">π° <a href="/bin/view/Main%20Categories/Censorship and Media/" target="_blank">Censorship & Media</a></h3> |
|
93 |
+ <ul> |
|
94 |
+ <li><a href="/bin/view/Main%20Categories/Censorship and Media/Hoaxes">Hoaxes</a></li> |
|
95 |
+ <li><a href="/bin/view/Main%20Categories/Censorship and Media/Media%20Bias">Media Bias</a></li> |
|
96 |
+ </ul> |
|
97 |
+ |
|
98 |
+ <h3 class="cat-healthcare">π <a href="/bin/view/Main%20Categories/Healthcare/" target="_blank">Healthcare</a></h3> |
|
99 |
+ <ul> |
|
100 |
+ <li><a href="/bin/view/Main%20Categories/Healthcare/Fertility">Fertility</a></li> |
|
101 |
+ <li><a href="/bin/view/Main%20Categories/Healthcare/Medical%20Bias">Medical Bias</a></li> |
|
102 |
+ </ul> |
|
103 |
+ |
|
104 |
+ <h3 class="cat-science">π§ <a href="/bin/view/Main%20Categories/Science and Research/" target="_blank">Science & Research</a></h3> |
|
105 |
+ <ul> |
|
106 |
+ <li><a href="/bin/view/Main%20Categories/Science and Research/AI">AI</a></li> |
|
107 |
+ <li><a href="/bin/view/Main%20Categories/Science and Research/Race and IQ">Race & IQ</a></li> |
|
108 |
+ <li><a href="/bin/view/Main%20Categories/Science and Research/The Existence of Race">Existence of Race</a></li> |
|
109 |
+ </ul> |
93 |
93 |
</div> |
|
111 |
+ |
|
112 |
+<!-- COLUMN 3 --> |
|
113 |
+<div class="dashboard-column"> |
|
114 |
+ <h3 class="cat-social">π§ <a href="/bin/view/Main%20Categories/Dating and Social Media/" target="_blank">Interpersonal & Social</a></h3> |
|
115 |
+ <ul> |
|
116 |
+ <li><a href="/bin/view/Main%20Categories/Dating and Social Media/Black%20New%20World%20Order">Black NWO</a></li> |
|
117 |
+ <li><a href="/bin/view/Main%20Categories/Dating and Social Media/Feminism">Feminism</a></li> |
|
118 |
+ <li><a href="/bin/view/Main%20Categories/Dating and Social Media/Intersectionality">Intersectionality</a></li> |
|
119 |
+ <li><a href="/bin/view/Main%20Categories/Dating and Social Media/Miscegenation">Miscegenation</a></li> |
|
120 |
+ </ul> |
|
121 |
+ |
|
122 |
+ <h3 class="cat-crime">πΌπΎ <a href="/bin/view/Main%20Categories/Crime and Justice/" target="_blank">Crime & Justice</a></h3> |
|
123 |
+ <ul> |
|
124 |
+ <li><a href="/bin/view/Main%20Categories/Crime and Justice/Black%20Crime">Black Crime</a></li> |
|
125 |
+ <li><a href="/bin/view/Main%20Categories/Crime and Justice/Crime%20Statistics">Crime Statistics</a></li> |
|
126 |
+ <li><a href="/bin/view/Main%20Categories/Crime and Justice/Do%20Blacks%20use%20drugs%20at%20the%20same%20rate%20as%20Whites">Drug Use</a></li> |
|
127 |
+ <li><a href="/bin/view/Main%20Categories/Crime and Justice/Interracial%20Rape">Interracial Rape</a></li> |
|
128 |
+ <li><a href="/bin/view/Main%20Categories/Crime and Justice/Sentencing%20Disparities">Sentencing Disparities</a></li> |
|
129 |
+ </ul> |
|
130 |
+ |
|
131 |
+ <h3 class="cat-jews">β‘οΈ <a href="/bin/view/Main%20Categories/Jews/" target="_blank">Jews</a></h3> |
|
132 |
+ <ul> |
|
133 |
+ <li><a href="/bin/view/Main%20Categories/Jews/Evidence%20of%20Intent">Evidence of Intent</a></li> |
|
134 |
+ <li><a href="/bin/view/Main%20Categories/Jews/Pornography">Pornography</a></li> |
|
135 |
+ </ul> |
|
136 |
+ |
|
137 |
+ <h3 class="cat-humor">π <a href="/bin/view/Main%20Categories/Humor and Memes/" target="_blank">Humor & Memes</a></h3> |
|
138 |
+ <ul> |
|
139 |
+ <li><a href="/bin/view/Main%20Categories/Humor and Memes">Open Folder</a></li> |
|
140 |
+ </ul> |
|
141 |
+</div> |
|
142 |
+ |
|
143 |
+</div> |
94 |
94 |
{{/html}} |
|
145 |
+ |
|
146 |
+ |
|
147 |
+ |
|
148 |
+ |
|
149 |
+= Content Being Worked on: = |
|
150 |
+ |
|
151 |
+* [[Jewish Crimes and Atrocities>>doc:Main Categories.Israel, Palestine, and Judaism.WebHome]] |
|
152 |
+* Historical Introduction to Nationalism |
|
153 |
+* Trends in Societies views on Whites over the last 50 years [[(Anes Datasets, lots of data)>>doc:Main Categories.Science & Research.Data and Trends.Anes.WebHome]] |
|
154 |
+ |
|
155 |
+= Content Requests = |
|
156 |
+ |
|
157 |
+* [[Feminism>>doc:Main Categories.Dating & Social Media.Feminism.WebHome]]: Origins and Jewish involvement |
|
158 |
+* [[USS Liberty>>doc:Main Categories.History.USS Liberty.WebHome]]: detailed analysis and things left out of wikipedia |
|
159 |
+* [[Revisionism>>doc:Main Categories.History.Real History of WW2.WebHome]] |
|
160 |
+* [[Documenting individual cases of Antiwhite discrimination>>doc:Main Categories.Discrimination.Discrimination Against White People.WebHome]], pay discrimination, modern segregation, double standards |
|
161 |
+* Jewish hypocrisy and evidence of [[intent>>doc:Main Categories.Jews.Evidence of Intent.WebHome]] for the ongoing [[White Genocide>>doc:Main Categories.Race.White Genocide.WebHome]]. |
|
162 |
+* [[Research papers>>doc:Main Categories.Science & Research.Research at a Glance.WebHome]] on all topics, formatted and summarized if possible |
|
163 |
+* Additional Pro White sites and [[resources>>doc:Guides and Help.Resources.WebHome]]. (You're welcome to add your own site for self promotion) |
|
164 |
+* [[Suggestions>>doc:Forums.The White Archive Discussion.Suggestions.WebHome]] for me to improve the site. |
|
165 |
+* Tagging of pages and sites |
|
166 |
+ |
|
167 |
+ |
|
168 |
+ |
|
169 |
+{{forum.recentForumDiscussions/}} |
|
170 |
+ |
|
171 |
+## π Research & Stats |
|
172 |
+{{include reference="Main.Categories.Research and Stats.ResearchStatsWidget"/}}## |
|
173 |
+ |
|
174 |
+---- |
|
175 |
+ |
|
176 |
+## π― Arguments & Counterarguments |
|
177 |
+{{include reference="Main.Categories.Arguments and Counterarguments.ArgumentsWidget"/}}## |
|
178 |
+ |
|
179 |
+---- |
|
180 |
+ |
|
181 |
+== π·οΈ Tags == |
|
182 |
+ |
|
183 |
+{{tagcloud/}} |
|
184 |
+ |
|
185 |
+---- |
|
186 |
+ |
|
187 |
+== π Recent Activity == |
|
188 |
+ |
|
189 |
+{{activity limit="20"/}} |