UPDC Home: Difference between revisions

Last edited by on 02 07 2026
Jump to: navigation, search
imported>Admin
Creating new UPDC Wiki home page
 
imported>Admin
Updated homepage with COARE-style layout
Line 1: Line 1:
= UPDC Data Commons Wiki =
<div class="updc-homepage">
<div class="updc-hero">
<h1>KNOW MORE ABOUT UPDC DATA COMMONS</h1>
<div class="updc-search">
<input type="text" placeholder="What are you searching for?" />
</div>
</div>


== Welcome to UPDC Data Commons ==
<div class="updc-cards">
<div class="updc-card">
<div class="updc-card-icon">
<i>ℹ</i>
</div>
<h3>About UPDC</h3>
<p>This section contains Wiki pages that describe what the UPDC Data Commons is, the services that we offer, and the team that maintains our operations.</p>
<a href="#about">Learn More</a>
</div>


The UPDC Data Commons provides comprehensive documentation and resources for data management, security, and infrastructure services.
<div class="updc-card">
<div class="updc-card-icon">
<i>⚙</i>
</div>
<h3>Using UPDC Services</h3>
<p>This section details how users can access UPDC services, utilize our data management tools, and communicate service requests to our team via the support portal.</p>
<a href="#services">Learn More</a>
</div>


== Main Sections ==
<div class="updc-card">
<div class="updc-card-icon">
<i>⚖</i>
</div>
<h3>Policies and Guidelines</h3>
<p>This section lists the different policies and guidelines implemented by the UPDC team concerning data management, security, and operational procedures.</p>
<a href="#policies">Learn More</a>
</div>
</div>


=== About UPDC ===
<div class="updc-recent">
This section contains Wiki pages that describe what the UPDC Data Commons is, the services that we offer, and the team that maintains our operations.
<h3>Recent Updates</h3>
<ul>
<li><a href="Security_Hardening">Security Hardening Guide</a> <span class="date">Sep 25, 2025</span></li>
<li><a href="Password_Policies">Password Policies</a> <span class="date">Sep 23, 2025</span></li>
<li><a href="Adding_a_User_to_Your_VM">VM User Management</a> <span class="date">Sep 22, 2025</span></li>
</ul>
</div>
</div>


* '''Overview''' - Introduction to UPDC Data Commons
<style>
* '''What we offer''' - Our services and capabilities
/* UPDC Homepage - COARE Style Layout */
** Data Management Services
** Security and Compliance
** Infrastructure Support
* '''Who we are''' - Our team and organization


=== Using UPDC Services ===
.updc-homepage {
This section details how users can access UPDC services, utilize our data management tools, and communicate service requests to our team.
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


* '''Getting Started'''
.updc-hero {
** Account Setup
    text-align: center;
** Access Procedures
    margin-bottom: 40px;
** User Guidelines
}
* '''Data Management'''
** Data Upload and Storage
** Data Catalog
** Backup and Recovery
* '''Security Services'''
** Security Hardening
** Password Policies
** Access Controls
* '''Support Portal'''
** Ticket Creation and Management
** Contact Information
** FAQ


=== Policies and Guidelines ===
.updc-hero h1 {
This section lists the different policies and guidelines implemented by the UPDC team.
    font-size: 2.5em;
    color: #666;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}


* '''Security Policies'''
.updc-search {
** Acceptable Use Policy
    display: flex;
** Data Classification Guidelines
    justify-content: center;
** Privacy Policy
    margin-bottom: 30px;
* '''Operational Guidelines'''
}
** Service Level Agreements
** User Responsibilities
** Incident Response Procedures


=== Getting Help ===
.updc-search input {
* '''User Documentation''' - Comprehensive guides and tutorials
    padding: 12px 20px;
* '''Contact Us''' - Support channels and contact information
    border: 1px solid #ddd;
* '''FAQ''' - Frequently asked questions
    border-radius: 25px;
    font-size: 16px;
    width: 400px;
    outline: none;
}


== Recent Updates ==
.updc-search input:focus {
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}


=== New Articles ===
.updc-cards {
* '''Security Hardening Guide''' - Comprehensive security configuration
    display: grid;
* '''Password Policies''' - Updated password requirements
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
* '''VM User Management''' - Adding users to virtual machines
    gap: 30px;
    margin-bottom: 40px;
}


=== Updated Articles ===
.updc-card {
* '''Security Hardening''' - Latest security recommendations
    background: white;
* '''Password Policies''' - Updated policy guidelines
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


== Quick Links ==
.updc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}


* [[Security_Hardening|Security Hardening Guide]]
.updc-card-icon {
* [[Password_Policies|Password Policies]]
    width: 60px;
* [[Adding_a_User_to_Your_VM|VM User Management]]
    height: 60px;
    border: 2px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: white;
}


== Contact Information ==
.updc-card-icon i {
    font-size: 24px;
    color: #666;
}


For technical support and questions, please contact the UPDC team through our support portal or email.
.updc-card h3 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}


----
.updc-card p {
''This wiki is maintained by the UPDC Data Commons team. Last updated: {{CURRENTYEAR}}-{{CURRENTMONTH}}-{{CURRENTDAY}}''
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
 
.updc-card a {
    color: #007cba;
    text-decoration: underline;
    font-weight: 500;
}
 
.updc-card a:hover {
    color: #005a87;
}
 
.updc-recent {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
}
 
.updc-recent h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3em;
}
 
.updc-recent ul {
    list-style: none;
    padding: 0;
}
 
.updc-recent li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}
 
.updc-recent li:last-child {
    border-bottom: none;
}
 
.updc-recent a {
    color: #007cba;
    text-decoration: none;
}
 
.updc-recent a:hover {
    text-decoration: underline;
}
 
.updc-recent .date {
    color: #999;
    font-size: 0.9em;
    float: right;
}
 
/* Responsive design */
@media (max-width: 768px) {
    .updc-cards {
        grid-template-columns: 1fr;
    }
   
    .updc-search input {
        width: 100%;
        max-width: 300px;
    }
   
    .updc-hero h1 {
        font-size: 2em;
    }
}
</style>

Revision as of 02:47, 25 September 2025

KNOW MORE ABOUT UPDC DATA COMMONS

ℹ

About UPDC

This section contains Wiki pages that describe what the UPDC Data Commons is, the services that we offer, and the team that maintains our operations.

<a href="#about">Learn More</a>

⚙

Using UPDC Services

This section details how users can access UPDC services, utilize our data management tools, and communicate service requests to our team via the support portal.

<a href="#services">Learn More</a>

⚖

Policies and Guidelines

This section lists the different policies and guidelines implemented by the UPDC team concerning data management, security, and operational procedures.

<a href="#policies">Learn More</a>

Recent Updates

  • <a href="Security_Hardening">Security Hardening Guide</a> Sep 25, 2025
  • <a href="Password_Policies">Password Policies</a> Sep 23, 2025
  • <a href="Adding_a_User_to_Your_VM">VM User Management</a> Sep 22, 2025

<style> /* UPDC Homepage - COARE Style Layout */

.updc-homepage {

   max-width: 1200px;
   margin: 0 auto;
   padding: 20px;
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

}

.updc-hero {

   text-align: center;
   margin-bottom: 40px;

}

.updc-hero h1 {

   font-size: 2.5em;
   color: #666;
   font-weight: 300;
   text-shadow: 0 1px 2px rgba(0,0,0,0.1);
   margin-bottom: 20px;

}

.updc-search {

   display: flex;
   justify-content: center;
   margin-bottom: 30px;

}

.updc-search input {

   padding: 12px 20px;
   border: 1px solid #ddd;
   border-radius: 25px;
   font-size: 16px;
   width: 400px;
   outline: none;

}

.updc-search input:focus {

   border-color: #007cba;
   box-shadow: 0 0 5px rgba(0,124,186,0.3);

}

.updc-cards {

   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
   margin-bottom: 40px;

}

.updc-card {

   background: white;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   padding: 30px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.updc-card:hover {

   transform: translateY(-2px);
   box-shadow: 0 4px 16px rgba(0,0,0,0.15);

}

.updc-card-icon {

   width: 60px;
   height: 60px;
   border: 2px solid #666;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   background: white;

}

.updc-card-icon i {

   font-size: 24px;
   color: #666;

}

.updc-card h3 {

   font-size: 1.4em;
   color: #333;
   margin-bottom: 15px;
   font-weight: 600;

}

.updc-card p {

   color: #666;
   line-height: 1.6;
   margin-bottom: 20px;

}

.updc-card a {

   color: #007cba;
   text-decoration: underline;
   font-weight: 500;

}

.updc-card a:hover {

   color: #005a87;

}

.updc-recent {

   background: #f8f9fa;
   border-radius: 8px;
   padding: 30px;
   margin-top: 40px;

}

.updc-recent h3 {

   color: #333;
   margin-bottom: 20px;
   font-size: 1.3em;

}

.updc-recent ul {

   list-style: none;
   padding: 0;

}

.updc-recent li {

   padding: 8px 0;
   border-bottom: 1px solid #e0e0e0;

}

.updc-recent li:last-child {

   border-bottom: none;

}

.updc-recent a {

   color: #007cba;
   text-decoration: none;

}

.updc-recent a:hover {

   text-decoration: underline;

}

.updc-recent .date {

   color: #999;
   font-size: 0.9em;
   float: right;

}

/* Responsive design */ @media (max-width: 768px) {

   .updc-cards {
       grid-template-columns: 1fr;
   }
   
   .updc-search input {
       width: 100%;
       max-width: 300px;
   }
   
   .updc-hero h1 {
       font-size: 2em;
   }

} </style>