TOC's from many pages

By ErichSteinboeckErichSteinboeck

Description

Here's a half-baked solution for discussion thread “TOC's from many pages displayed on one?

Although this allows you to pull in the TOC's, they aren't linking to their respective pages (but to the current page instead) and fold/unfold only works for the first TOC.

Code

[[module ListPages category="code" limit="9" order="pageEditedDesc"]]
[[table]][[row]]
[[cell]][[[%%page_unix_name%%]]][[/cell]][[/row]]
[[row]]
[[cell]]
[[div style="display : none"]]
[[include %%page_unix_name%%]]
[[/div]]
[[toc]]
[[/cell]][[/row]][[/table]]
[[/module]]

In action

search

Description

put description what kind of problem does the solution solve and how

Code

put the code here

In action

link to the implemented solution on a Wikidot site or put a working example here

Table of Contents
vmclients-page

I just did chapter 1: Module project Capstone 1.1
Just added a new VM. This is for Module 2 Assignment Capstone 3.1.
Setting up a Ubuntu Server using the VM.
VM operating system is Ubuntu (64-bit). Did command 1-23.

NEW skill learned in the Packet Tracer network

put description what kind of problem does the solution solve and how

Code

put the code here

In action

link to the implemented solution on a Wikidot site or put a working example here

Table of Contents
mypage

Description

put description what kind of problem does the solution solve and how

Code

put the code here

In action

link to the implemented solution on a Wikidot site or put a working example here

Table of Contents
virtualization:vmclients1

Chapter: Module 1: Assignment - Capstone 2-1
Hypervisor: Oracle VirtualBox Manager
VM Computer Name: Ubuntu
VM Operating System: Ubuntu (64-bit)

Module 2: Assignment - Capstone 3-1
Hypervisor: Oracle VirtualBox Manager
VM Computer Name: UbuntuServer
VM Operating System: Ubuntu (64-bit)

Table of Contents
formllc

Tousif Akram is revolutionizing the business consultancy by focusing on making the U.S. LLC registration process easy for all non-residents keen in starting a business. As the founder and CEO of FormLLC, Tousif has been able to help every entrepreneur from every continent in America, helping them to set up their businesses successfully. Eager to assist people in incorporating American companies, he blends his knowledge of the field with innovation and a client-oriented approach growing into an extraordinary professional.

This article will focus on his work, accomplishments, and how FormLLC is making life easier for foreigners willing to set up a business in the United States.

Who is Tousif Akram?

From India, Tousif Akram is a youthful businessman who holds high hopes for the future and aims to help people realize their entrepreneurial ambitions. Tousif Akram set up FormLLC with the purpose of helping non American citizens register and maintain their LLCs without any hassles.

In the business of forming LLCs only Tousif’s knowledge does not stop there. Tousif is also well-versed in:
• Tax Compliance: Advising clients on their requirements and assisting them in meeting them.
• Banking Solutions: Enabling entrepreneurs to open US business bank accounts with ease.
• EIN Acquisition: Helping those who do not have a Social Security Number (SSN) acquire an Employer Identification Number (EIN).

Backed by more than 5,000 LLCs registered under his supervision plus international clients, Tousif Akram has become a highly reliable consultant for foreign entrepreneurs.

Inception of FormLLC

With which FormLLC came into being – to make American business registration straightforward, quick, and affordable to all irrespective of their nationality. Apart from conventional service providers FormLLC promises:
• Quick Processing – You can register your LLC with us within 24 hours.
• EIN Application without SSN – Your EIN through us will take a maximum of seven working consecutive days.

Tousif Akram is more than just a business consultant—he’s a visionary leader dedicated to empowering entrepreneurs worldwide. Through FormLLC, he has redefined how international businesses operate in the United States. With fast, affordable, and reliable services, Tousif and his team make starting a U.S. LLC not only possible but effortless.

Join the thousands of entrepreneurs who have trusted FormLLC to kickstart their American dream. Contact us today and make your business vision a reality!

Table of Contents
redirection

Description

This is the redirect module. It can redirect to a page on your Wikidot site, another Wikidot site or on an external site. This makes a “301 Permanently Moved” Redirection and it will tell the user’s web browser to redirect / go to another web page.

Code

[[module Redirect destination="PUT THE PAGE NAME OR URL HERE TO REDIRECT TO/"]]

In action

An example is on code:redirect made by someone else, which redirects to a blank page.

Preventing the redirect

You can prevent the redirect because it won’t be possible to edit the actual page, so here’s a solution.

Add /noredirect/true to the end of the URL of the page that was redirected from, then you can delete / remove the redirect or change the redirect.

Credits To

Credits to the Wikidot Docs, the original page is at https://wikidot-proxy.obscurative.ru/doc-modules:redirect-module

who:n

/* Global styles */

  • {

margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Arial', sans-serif;
background-color: #0d0d0d;
color: #dcdcdc;
line-height: 1.6;
overflow-x: hidden;
padding: 20px;
}

/* Header styling */
header {
text-align: center;
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Section styling for SCP and Cult Information */
.section {
margin-bottom: 40px;
}

h2 {
font-size: 2rem;
color: #ff6600;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
border-bottom: 2px solid #ff6600;
padding-bottom: 5px;
}

p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #dcdcdc;
}

ul {
list-style: none;
padding-left: 0;
}

ul li {
font-size: 1.1rem;
color: #bfbfbf;
margin-bottom: 10px;
}

/* Subtle animation for text elements */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.fade-in {
animation: fadeIn 1.5s ease-out forwards;
}

/* Special styling for cult elements */
.cult-header {
color: #ff6600;
text-align: center;
font-size: 2rem;
letter-spacing: 3px;
margin: 50px 0;
text-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

.cult-symbol {
width: 200px;
height: 200px;
margin: 0 auto;
background: url('cult-symbol.png') no-repeat center center;
background-size: contain;
animation: rotateSymbol 10s linear infinite;
}

@keyframes rotateSymbol {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Styling for links and buttons */
a, button {
color: #ff6600;
text-decoration: none;
border: 2px solid #ff6600;
padding: 10px 20px;
background-color: transparent;
font-size: 1.2rem;
text-transform: uppercase;
display: inline-block;
margin-top: 20px;
transition: all 0.3s ease;
}

a:hover, button:hover {
background-color: #ff6600;
color: #0d0d0d;
cursor: pointer;
}

/* Footer Styling */
footer {
text-align: center;
font-size: 1rem;
color: #bfbfbf;
margin-top: 40px;
border-top: 2px solid #ff6600;
padding-top: 20px;
}

/* Dark, ethereal background patterns */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('dark-pattern.png') repeat;
opacity: 0.05;
z-index: -1;
}

Table of Contents
who

/* Global styles */

  • {

margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Arial', sans-serif;
background-color: #0d0d0d;
color: #dcdcdc;
line-height: 1.6;
overflow-x: hidden;
padding: 20px;
}

/* Header styling */
header {
text-align: center;
font-size: 2.5rem;
color: #ffffff;
margin-bottom: 30px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Section styling for SCP and Cult Information */
.section {
margin-bottom: 40px;
}

h2 {
font-size: 2rem;
color: #ff6600;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
border-bottom: 2px solid #ff6600;
padding-bottom: 5px;
}

p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #dcdcdc;
}

ul {
list-style: none;
padding-left: 0;
}

ul li {
font-size: 1.1rem;
color: #bfbfbf;
margin-bottom: 10px;
}

/* Subtle animation for text elements */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.fade-in {
animation: fadeIn 1.5s ease-out forwards;
}

/* Special styling for cult elements */
.cult-header {
color: #ff6600;
text-align: center;
font-size: 2rem;
letter-spacing: 3px;
margin: 50px 0;
text-shadow: 0 0 20px rgba(255, 102, 0, 0.8);
}

.cult-symbol {
width: 200px;
height: 200px;
margin: 0 auto;
background: url('cult-symbol.png') no-repeat center center;
background-size: contain;
animation: rotateSymbol 10s linear infinite;
}

@keyframes rotateSymbol {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* Styling for links and buttons */
a, button {
color: #ff6600;
text-decoration: none;
border: 2px solid #ff6600;
padding: 10px 20px;
background-color: transparent;
font-size: 1.2rem;
text-transform: uppercase;
display: inline-block;
margin-top: 20px;
transition: all 0.3s ease;
}

a:hover, button:hover {
background-color: #ff6600;
color: #0d0d0d;
cursor: pointer;
}

/* Footer Styling */
footer {
text-align: center;
font-size: 1rem;
color: #bfbfbf;
margin-top: 40px;
border-top: 2px solid #ff6600;
padding-top: 20px;
}

/* Dark, ethereal background patterns */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('dark-pattern.png') repeat;
opacity: 0.05;
z-index: -1;
}

Table of Contents
custom-identity-groups

Description

Sometimes we want to set and display a user's special identity on a website, and this snippet will address that

Code

[[module CSS]]

.printuser a:last-child[href*="https://wikidot-proxy.obscurative.ru/user:info/"] {
    display: block;
    font-size: .9em;
    transition: .1s ease;
    text-decoration: none !important;
}

.printuser a[href*="javas"] {
    display: none !important;
}

.printuser a:last-child[href*="https://wikidot-proxy.obscurative.ru/user:info/"]:hover {
    text-decoration: none !important;
    transform: scale(1.05);
}

.printuser>a:first-child:where(:only-of-type)::after {
    display: none !important;
}

.printuser a:last-child[href*="https://wikidot-proxy.obscurative.ru/user:info/"]::after {
    margin-top: -.5em;
    display: block;
    font-weight: 100;
    font-size: .7em;
    color: black;
    margin-right: auto;
    width: max-content;
}

.printuser a:last-child[href*="https://wikidot-proxy.obscurative.ru/user:info/USER NAME"]::after {
    content: 'GROUP';
}

.printuser {
    display: flex;
}

[[/module]]

In action

link to the implemented solution on a Wikidot site or put a working example here

Table of Contents

Thanks to tsangk for this great snippet: conditional-blocks


text above inserted with:

[[include :snippets:if START |unique=1|type=equal|var1=%%name%%|var2=conditional-blocks]]
**##red|Thanks to tsangk for this great snippet:##** [[[code:conditional-blocks]]]
[[include :snippets:if END]]



Other snippets posted by ErichSteinboeck

Redirect: To - 16 Feb 2012 01:37
Module Listpages Tags - 16 Feb 2012 01:24
Module Feed Drilldown: Details Page - 16 Feb 2012 01:24
Module Feed Drilldown - 16 Feb 2012 01:24
Module Feed: Collapsible - 16 Feb 2012 01:23
Module Categories - 16 Feb 2012 01:23
MiniRecentPosts With Limit - 16 Feb 2012 01:23
ListPages: Horizontal? - 16 Feb 2012 01:20
Choose A Page! - 15 Feb 2012 00:32
Redirect: From (1st) - 01 Mar 2009 18:18
Redirect: From (2nd) - 01 Mar 2009 18:17


Rate this solution

If you think this solution is useful — rate it up!

rating: +1+x
Add a New Comment
toc
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License